23 lines
325 B
C
23 lines
325 B
C
|
#ifndef _STDAFX_H
|
||
|
#define _STDAFX_H
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
|
||
|
// Windows Header Files:
|
||
|
#include <windows.h>
|
||
|
|
||
|
// C RunTime Header Files
|
||
|
#include <stdlib.h>
|
||
|
#include <malloc.h>
|
||
|
#include <memory.h>
|
||
|
#include <tchar.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "utils.h"
|
||
|
|
||
|
#endif
|