1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

mysql_test_run_new.dsp:

Link mysql_test_run_new as console application
my_manage.c:
  The type intptr_t isn't defined for VC 6.0
  Changed return type for CreateProcess() to bool
mysql_test_run_new.c:
  The type intptr_t isn't defined for VC 6.0
mysqltest.dsp:
  Added regex to additional build types for mysqltest
mysqldump.dsp:
  Added mysys.lib for linking mysqldump
This commit is contained in:
kent@mysql.com
2005-01-04 23:07:29 +01:00
parent 145ae80b88
commit de85fdb78f
5 changed files with 31 additions and 18 deletions

View File

@ -37,7 +37,8 @@
#include <sys/mode.h>
#endif
#ifdef __WIN__
#include <Shlwapi.h>
#include <windows.h>
#include <shlwapi.h>
#include <direct.h>
#endif
@ -1544,7 +1545,11 @@ int main(int argc, char **argv)
}
#else
struct _finddata_t dir;
#if defined(_MSC_VER) && _MSC_VER > 1200
intptr_t handle;
#else
long handle;
#endif /* _MSC_VER && _MSC_VER > 1200 */
char test[FN_LEN];
char mask[FN_REFLEN];
char *p;