43 lines
1.6 KiB
C
43 lines
1.6 KiB
C
//---------------------------------------------------------------------------
|
|
// StdAfx.h - defines precompiled hdr set (doesn't use CrtDbgReport)
|
|
//---------------------------------------------------------------------------
|
|
#ifndef _STDAFX_THEMELDR_
|
|
#define _STDAFX_THEMELDR_
|
|
//---------------------------------------------------------------------------
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
//---------------------------------------------------------------------------
|
|
#include <wchar.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <io.h>
|
|
//---------------------------------------------------------------------------
|
|
#define _ATL_NO_ATTRIBUTES
|
|
#define _ATL_APARTMENT_THREADED
|
|
//---------------------------------------------------------------------------
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0400
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
//---------------------------------------------------------------------------
|
|
#define _THEMELDR_
|
|
//---------------------------------------------------------------------------
|
|
#include <w4warn.h>
|
|
//---------------------------------------------------------------------------
|
|
#include "autos.h"
|
|
#include "log.h"
|
|
#include "Errors.h"
|
|
#include "Utils.h"
|
|
#include "SimpStr.h"
|
|
#include "stringtable.h"
|
|
//---------------------------------------------------------------------------
|
|
#include <atlbase.h>
|
|
//---------------------------------------------------------------------------
|
|
#define STRSAFE_LIB
|
|
#include <strsafe.h>
|
|
//---------------------------------------------------------------------------
|
|
#endif //_STDAFX_THEMELDR_
|
|
//---------------------------------------------------------------------------
|