mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:23:07 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
79
base/system/userinit/userinit.h
Normal file
79
base/system/userinit/userinit.h
Normal 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__ */
|
Loading…
Add table
Add a link
Reference in a new issue