Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
b351aa58
Commit
b351aa58
authored
Nov 17, 2014
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
08629849
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
9 deletions
+20
-9
FileOper.h
FileOper.h
+1
-1
MtVerify.h
MtVerify.h
+18
-8
VsVer.h
VsVer.h
+1
-0
No files found.
FileOper.h
View file @
b351aa58
...
...
@@ -89,7 +89,7 @@ public:
}
SAFEDELETEARR
(
cpath
);
#else
fopen_s
(
&
p
,
c
path
,
"r"
);
fopen_s
(
&
p
,
path
,
"r"
);
if
(
p
==
NULL
)
return
0
;
#endif
...
...
MtVerify.h
View file @
b351aa58
...
...
@@ -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
...
...
VsVer.h
View file @
b351aa58
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment