StovePCMatchmaking(Native dll)  1.0.4.1
stdafx.h
1 // stdafx.h : 자주 사용하지만 자주 변경되지는 않는
2 // 표준 시스템 포함 파일 또는 프로젝트 관련 포함 파일이
3 // 들어 있는 포함 파일입니다.
4 //
5 
6 #pragma once
7 
8 #include "targetver.h"
9 
10 #include <stdio.h>
11 #include <tchar.h>
12 // TODO: 프로그램에 필요한 추가 헤더는 여기에서 참조합니다.
13 
14 #ifdef _DEBUG
15 #define _CRTDBG_MAP_ALLOC
16 #define _CRTDBG_MAP_ALLOC_NEW
17 
18 #include <stdlib.h>
19 #include <crtdbg.h>
20 #define DEBUG_NEW new( _CLIENT_BLOCK, __FILE__, __LINE__)
21 #define new DEBUG_NEW
22 #endif