-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtilCommon.h
39 lines (33 loc) · 859 Bytes
/
UtilCommon.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#define RETURN(F) { F; return; }
#define RETURN_V(F,V) { F; return V; }
#define CONTINUE(F) { F; continue; }
#define BREAK(F) { F; break; }
#define IS_ODD(X) ((X)&1)
#define IS_EVEN(X) (!IS_ODD(X))
#include <strsafe.h>
#include "MinidumpHelp.h"
#include "SyncObject.h"
#include "Invoke.h"
#include "HighOrderContainer.h"
#include "StringUtil.h"
#include "IniFile.h"
#include "UIUtil.h"
#include "MemoryUtil.h"
#include "ProcessUtil.h"
#include "TimeUtil.h"
#include "FileSystemUtil.h"
#include "FolderUtil.h"
#include "Log.h"
#include "Thread.h"
#include "MFCCheckButton.h"
#include "SystemUtil.h"
#include "SocketDefine.h"
#include "ServerSocket.h"
#include "ClientSocket.h"
#include "NetworkUtil.h"
#include "Serial.h"
#include "ValueEncode.h"
#include "CompleteEvent.h"
#include ".\\zip\Ark.h"
#include ".\\zip\ArkLib.h"