Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
my_manage.h
Package: mysql-4.1.16-win-src.zip [view]
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 4k
Category:
MySQL
Development Platform:
Visual C++
- /*
- Copyright (c) 2002 Novell, Inc. All Rights Reserved.
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- #ifndef _MY_MANAGE
- #define _MY_MANAGE
- /******************************************************************************
- includes
- ******************************************************************************/
- #include <stdlib.h>
- #ifndef __WIN__
- #include <unistd.h>
- #endif
- #ifndef __NETWARE__
- #include <string.h>
- #include <my_global.h>
- #include <m_string.h>
- #ifndef __WIN__
- #define strnicmp strncasecmp
- #define strlwr(STRARG) (STRARG)
- #else
- int my_vsnprintf_(char *to, size_t n, const char* value, ...);
- #endif
- #endif
- /******************************************************************************
- macros
- ******************************************************************************/
- #define ARG_BUF 10
- #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
- #define SLAVE_PID 2
- #define mysqld_timeout 60000
- int pid_mode;
- bool run_server;
- bool skip_first_param;
- #define snprintf _snprintf
- #define vsnprintf _vsnprintf
- #endif
- /******************************************************************************
- structures
- ******************************************************************************/
- typedef struct
- {
- int argc;
- char **argv;
- size_t size;
- } arg_list_t;
- #ifdef __WIN__
- typedef int pid_t;
- #endif
- /******************************************************************************
- global variables
- ******************************************************************************/
- /******************************************************************************
- prototypes
- ******************************************************************************/
- void init_args(arg_list_t *);
- void add_arg(arg_list_t *, const char *, ...);
- void free_args(arg_list_t *);
- #ifndef __WIN__
- int sleep_until_file_exists(char *);
- int sleep_until_file_deleted(char *);
- #else
- int sleep_until_file_exists(HANDLE);
- int sleep_until_file_deleted(HANDLE);
- #endif
- int wait_for_server_start(char *, char *, char *, char *, int,char *);
- #ifndef __WIN__
- int spawn(char *, arg_list_t *, int, char *, char *, char *, char *);
- #else
- int spawn(char *, arg_list_t *, int , char *, char *, char *, HANDLE *);
- #endif
- #ifndef __WIN__
- int stop_server(char *, char *, char *, char *, int, char *,char *);
- pid_t get_server_pid(char *);
- void kill_server(pid_t pid);
- #else
- int stop_server(char *, char *, char *, char *, int, HANDLE,char *);
- #endif
- void del_tree(char *);
- 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 */