mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2944
This commit is contained in:
parent
f008c990a0
commit
2729ebd4f5
|
@ -37,7 +37,7 @@
|
|||
|
||||
|
||||
// Well if we are not using the MFC/ATL frameworks, then we are using the CRT.
|
||||
#else __AFXWIN_H__
|
||||
#else // __AFXWIN_H__
|
||||
|
||||
#include <windows.h>
|
||||
#include <stdio.h>
|
||||
|
@ -63,7 +63,7 @@ void boinc_trace(const char *pszFormat, ...)
|
|||
_CrtDbgReport(_CRT_WARN, NULL, NULL, NULL, "%s", szBuffer);
|
||||
}
|
||||
|
||||
#endif _DEBUG
|
||||
#endif // _DEBUG
|
||||
|
||||
|
||||
//
|
||||
|
@ -152,6 +152,6 @@ int boinc_diag_cleanup() {
|
|||
}
|
||||
|
||||
|
||||
#endif __AFXWIN_H__
|
||||
#endif // __AFXWIN_H__
|
||||
|
||||
#endif _WIN32
|
||||
#endif // _WIN32
|
||||
|
|
|
@ -66,7 +66,7 @@ void boinc_trace(const char *pszFormat, ...);
|
|||
|
||||
|
||||
// Well if we are not using the MFC/ATL frameworks, then we are using the CRT.
|
||||
#else __AFXWIN_H__
|
||||
#else // __AFXWIN_H__
|
||||
|
||||
|
||||
//
|
||||
|
@ -84,16 +84,16 @@ void boinc_trace(const char *pszFormat, ...);
|
|||
#define BOINCASSERT(expr) _ASSERT_BASE((expr), #expr)
|
||||
#define BOINCTRACE boinc_trace
|
||||
|
||||
#else _DEBUG
|
||||
#else // _DEBUG
|
||||
|
||||
#define BOINCASSERT(expr) ((void)0)
|
||||
#define BOINCTRACE ((void)0)
|
||||
|
||||
#endif _DEBUG
|
||||
#endif // _DEBUG
|
||||
|
||||
#endif __AFXWIN_H__
|
||||
#endif // __AFXWIN_H__
|
||||
|
||||
#endif _WIN32
|
||||
#endif // _WIN32
|
||||
|
||||
|
||||
|
||||
|
@ -118,4 +118,4 @@ void boinc_trace(const char *pszFormat, ...);
|
|||
#endif
|
||||
|
||||
|
||||
#endif _BOINC_DIAGNOSTICS_
|
||||
#endif //_BOINC_DIAGNOSTICS_
|
|
@ -9667,3 +9667,9 @@ Rom Feb 2 2004
|
|||
api/
|
||||
boincdiag.cpp,h (Added)
|
||||
boinc_api.c
|
||||
|
||||
Rom Feb 3 2004
|
||||
- Fixed warning while compiling with gcc.
|
||||
|
||||
api/
|
||||
boincdiag.cpp,h
|
||||
|
|
Loading…
Reference in New Issue