summaryrefslogtreecommitdiff
path: root/mysql-test/my_manage.h
diff options
context:
space:
mode:
authorwax@kishkin.ru <>2004-12-14 18:46:55 +0500
committerwax@kishkin.ru <>2004-12-14 18:46:55 +0500
commite81d48fdd94799e2aa1c2d593011888c5e2f7c96 (patch)
tree09a7b5e2571fc4f8e2de4cea9e832983faf5b711 /mysql-test/my_manage.h
parent7c31ea4d839cc351eea24b4ced1a44731792af29 (diff)
downloadmariadb-git-e81d48fdd94799e2aa1c2d593011888c5e2f7c96.tar.gz
corrected mysqltest.dsp
corrected mysql_test_run_new.dsp added dependency corrected path of mysql_test_run_new.dsp fixed wrong code added my_create_tables.c removed command_line fixed #elif restored NAME_MAX and MAX_FNAME added create_system_files() added compare() for windows added all files of testes in script added mysql-test in script
Diffstat (limited to 'mysql-test/my_manage.h')
-rw-r--r--mysql-test/my_manage.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/my_manage.h b/mysql-test/my_manage.h
index 7e371d36ab1..5df77b01af8 100644
--- a/mysql-test/my_manage.h
+++ b/mysql-test/my_manage.h
@@ -52,6 +52,8 @@ int my_vsnprintf_(char *to, size_t n, const char* value, ...);
#define TRY_MAX 5
#ifdef __WIN__
+#define PATH_MAX _MAX_PATH
+#define NAME_MAX _MAX_FNAME
#define kill(A,B) TerminateProcess((HANDLE)A,0)
#define NOT_NEED_PID 0
#define MASTER_PID 1
@@ -130,4 +132,6 @@ int removef(const char *, ...);
void get_basedir(char *, char *);
void remove_empty_file(const char *file_name);
+bool create_system_files(const char *mdata,const char *output_file, bool test);
+
#endif /* _MY_MANAGE */