1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // stdafx.h : include file for standard system include files,
- // or project specific include files that are used frequently, but
- // are changed infrequently
- //
- #pragma once
- #include "targetver.h"
- #if 0
- #if (defined(_DEBUG) || defined(DEBUG))
- #ifndef _CRTDBG_MAP_ALLOC
- #define _CRTDBG_MAP_ALLOC
- #endif
- #endif
- #endif
- #ifndef WIN32_LEAN_AND_MEAN
- #define WIN32_LEAN_AND_MEAN
- #endif
- #include <stdlib.h>
- #include <stdio.h>
- #include <assert.h>
- #ifdef _WIN32
- #include <WinSock2.h>
- #include <Mmsystem.h>
- #include <windows.h>
- #include <crtdbg.h>
- #include <process.h>
- #endif // _WIN32
- #pragma warning( disable: 4127 )
- #include "AutoArray.h"
- #include "SimpleString.h"
- #include "SmartPointer.h"
- // TODO: reference additional headers your program requires here
|