Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.

This commit is contained in:
Colin Finck 2017-10-03 07:45:34 +00:00
parent b94e2d8ca0
commit c2c66aff7d
24198 changed files with 0 additions and 37285 deletions

View file

@ -0,0 +1,47 @@
#ifndef _MSCONFIG_PCH_
#define _MSCONFIG_PCH_
// NOTE: It is completely idiotic to need those defines defined
// for having the *_s string functions. In the MS CRT they are
// directly available without further tricks.
#define MINGW_HAS_SECURE_API 1
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h> // FIXME: Should be normally useless in a proper CRT...
#include <tchar.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define NTOS_MODE_USER
#define _FORCENAMELESSUNION
// #define _WIN32_DCOM // For CoInitializeEx on Win2k and perhaps XP / 2003 ??
#include <windef.h>
#include <winbase.h>
#include <winnls.h>
#include <winreg.h>
#include <winuser.h>
#include <winver.h>
#include <initguid.h>
// #include <shlobj.h> // If used, initguid.h must be included before!
#include <shlwapi.h>
#include <shellapi.h>
#include <commctrl.h>
#include <prsht.h>
#include <strsafe.h>
#include "msconfig.h"
#include "resource.h"
#define MAX_KEY_LENGTH 255
#define MAX_VALUE_NAME 16383
#endif /* _MSCONFIG_PCH_ */