Commit b351aa58 authored by captainwong's avatar captainwong

update

parent 08629849
...@@ -89,7 +89,7 @@ public: ...@@ -89,7 +89,7 @@ public:
} }
SAFEDELETEARR(cpath); SAFEDELETEARR(cpath);
#else #else
fopen_s(&p, cpath, "r"); fopen_s(&p, path, "r");
if(p == NULL) if(p == NULL)
return 0; return 0;
#endif #endif
......
...@@ -137,23 +137,33 @@ __inline LPTSTR GetModuleFilePath() ...@@ -137,23 +137,33 @@ __inline LPTSTR GetModuleFilePath()
/////////*********************自定义宏********************//////////////////////// /////////*********************自定义宏********************////////////////////////
//安全删除普通堆内存 //安全删除普通堆内存
#define SAFEDELETEP(p) {if(p){delete (p); (p)=NULL;}} #define SAFEDELETEP(p) {if(p){delete (p); (p)=NULL;}}
#define SAFEDELETEARR(pArr) {if((pArr)){delete[] (pArr); (pArr)=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){\ #define CLOSEHANDLE(h){\
if(h != INVALID_HANDLE_VALUE)\ if (h != INVALID_HANDLE_VALUE && h != NULL) {\
{ \ ::CloseHandle(h);\
::CloseHandle(h); \
h = INVALID_HANDLE_VALUE;\ h = INVALID_HANDLE_VALUE;\
} \ }\
} }
#define CLOSESOCKET(s){\ #define CLOSESOCKET(s){\
if(s != INVALID_SOCKET)\ if(s != INVALID_SOCKET){\
{ \
::closesocket(s); \ ::closesocket(s); \
s = INVALID_SOCKET;\ s = INVALID_SOCKET;\
} \ }\
} }
#ifdef _DEBUG #ifdef _DEBUG
......
...@@ -24,5 +24,6 @@ ...@@ -24,5 +24,6 @@
#define strcat_s(dst, len, src) strcat(dst, src) #define strcat_s(dst, len, src) strcat(dst, src)
#define _countof sizeof #define _countof sizeof
#define memcpy_s(dst, size, src, len) memcpy(dst, src, len) #define memcpy_s(dst, size, src, len) memcpy(dst, src, len)
#define strnlen_s(src, size) strlen(src)
#endif #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