25 lines
440 B
C
25 lines
440 B
C
|
#ifndef __Precomp_h_
|
||
|
#define __Precomp_h_
|
||
|
|
||
|
#define OEMRESOURCE
|
||
|
#pragma warning( disable : 4786 )
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <windowsx.h>
|
||
|
#include <commctrl.h>
|
||
|
#include <commdlg.h>
|
||
|
#include <dlgs.h>
|
||
|
#include <shellapi.h>
|
||
|
#include <prsht.h>
|
||
|
#include <assert.h>
|
||
|
#include <limits.h>
|
||
|
#include <tchar.h>
|
||
|
#include <shlobj.h>
|
||
|
#include "Util.h"
|
||
|
|
||
|
//#include "resource.h"
|
||
|
extern HINSTANCE g_hInstance;
|
||
|
extern HWND g_hwndActive;
|
||
|
|
||
|
#endif
|