| 123456789101112131415161718192021222324252627282930313233 |
- #include "Win32.h"
- #include "ID.h"
- #include "Function.h"
- //Send
- bool SendCommand(LPCSTR command)
- {
- DWORD size = strlen(command);
- if (WriteFile(UIw_key, command, size, NULL, NULL) != 0)
- {
- FlushFileBuffers(UIw_key);
- return true;
- }
- else
- {
- Err(_T("发送命令失败\n可能是因为服务器已被关闭"));
- return false;
- }
- }
- bool SendCommand_WhenStop(LPCSTR command)
- {
- DWORD size = strlen(command);
- if (WriteFile(UIw_key, command, size, NULL, NULL) != 0)
- {
- FlushFileBuffers(UIw_key);
- return true;
- }
- else
- {
- return false;
- }
- }
|