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,79 @@
/*
*/
#ifndef __USERINIT_H__
#define __USERINIT_H__
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
#include <wingdi.h>
#include <wincon.h>
#include <shellapi.h>
#include <regstr.h>
#include <shlobj.h>
#include <shlwapi.h>
#include <undocuser.h>
#include <winnls.h>
#include <stdio.h>
#include <ndk/exfuncs.h>
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(userinit);
#include "resource.h"
typedef enum
{
LOCALEPAGE,
STARTPAGE,
DONE
} PAGESTATE;
typedef enum
{
SHELL,
INSTALLER,
REBOOT
} RUN;
typedef struct _IMGINFO
{
HBITMAP hBitmap;
INT cxSource;
INT cySource;
INT iPlanes;
INT iBits;
} IMGINFO, *PIMGINFO;
typedef struct
{
PAGESTATE NextPage;
RUN Run;
IMGINFO ImageInfo;
} STATE, *PSTATE;
extern HINSTANCE hInstance;
LONG
ReadRegSzKey(
IN HKEY hKey,
IN LPCWSTR pszKey,
OUT LPWSTR *pValue);
BOOL
IsLiveCD(VOID);
VOID
RunLiveCD(
PSTATE State);
#endif /* __USERINIT_H__ */