2014-02-03 16:13:37 +00:00
|
|
|
#ifndef _MSCONFIG_PCH_
|
|
|
|
#define _MSCONFIG_PCH_
|
|
|
|
|
2014-01-06 21:01:43 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
2006-02-16 23:18:11 +00:00
|
|
|
#define NTOS_MODE_USER
|
2014-01-06 21:01:43 +00:00
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winreg.h>
|
2006-02-16 23:18:11 +00:00
|
|
|
#include <tchar.h>
|
2006-06-29 13:33:59 +00:00
|
|
|
#include <stdio.h>
|
2008-02-07 11:23:38 +00:00
|
|
|
#include <shlobj.h>
|
2014-01-19 08:20:45 +00:00
|
|
|
#include <strsafe.h>
|
2006-02-16 23:18:11 +00:00
|
|
|
|
|
|
|
#include "msconfig.h"
|
2014-01-06 21:01:43 +00:00
|
|
|
#include "resource.h"
|
2006-02-16 23:18:11 +00:00
|
|
|
|
|
|
|
#define MAX_KEY_LENGTH 255
|
|
|
|
#define MAX_VALUE_NAME 16383
|
2014-02-03 16:13:37 +00:00
|
|
|
|
|
|
|
#endif /* _MSCONFIG_PCH_ */
|