c48c9e1f86
Added server to project. A server can now be started in the project.
17 lines
334 B
C
17 lines
334 B
C
#if defined (_WIN64) | defined(_WIN32)
|
|
#ifndef WinLeakeCheck_h__
|
|
#define WinLeakeCheck_h__
|
|
|
|
//For memory leak checking
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
|
|
#ifdef _DEBUG
|
|
#ifndef DBG_NEW
|
|
#define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
|
|
#define new DBG_NEW
|
|
#endif
|
|
#endif // _DEBUG
|
|
#endif
|
|
#endif |