Commit b351aa58 authored by captainwong's avatar captainwong

update

parent 08629849
......@@ -89,7 +89,7 @@ public:
}
SAFEDELETEARR(cpath);
#else
fopen_s(&p, cpath, "r");
fopen_s(&p, path, "r");
if(p == NULL)
return 0;
#endif
......
......@@ -137,23 +137,33 @@ __inline LPTSTR GetModuleFilePath()
/////////*********************自定义宏********************////////////////////////
//安全删除普通堆内存
#define SAFEDELETEP(p) {if(p){delete (p); (p)=NULL;}}
#define SAFEDELETEARR(pArr) {if((pArr)){delete[] (pArr); (pArr)=NULL;}}
//安全删除对话框类堆内存
#define SAFEDELETEDLG(pDlg) {if((pDlg)){(pDlg)->DestroyWindow(); delete (pDlg); (pDlg)=NULL;}}
#define SAFEDELETEDLG(pDlg) {\
if ((pDlg)) {\
if (::IsWindow(pDlg->m_hWnd)) {\
(pDlg)->DestroyWindow();\
}\
delete (pDlg);\
(pDlg)=NULL;\
}\
}
//关闭核心对象句柄
#define CLOSEHANDLE(h){\
if(h != INVALID_HANDLE_VALUE)\
{ \
::CloseHandle(h); \
if (h != INVALID_HANDLE_VALUE && h != NULL) {\
::CloseHandle(h);\
h = INVALID_HANDLE_VALUE;\
} \
}\
}
#define CLOSESOCKET(s){\
if(s != INVALID_SOCKET)\
{ \
if(s != INVALID_SOCKET){\
::closesocket(s); \
s = INVALID_SOCKET;\
} \
}\
}
#ifdef _DEBUG
......
......@@ -24,5 +24,6 @@
#define strcat_s(dst, len, src) strcat(dst, src)
#define _countof sizeof
#define memcpy_s(dst, size, src, len) memcpy(dst, src, len)
#define strnlen_s(src, size) strlen(src)
#endif
/***************************************/
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment