/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel * FILE: base/services/umpnpmgr/install.c * PURPOSE: Device installer * PROGRAMMER: Eric Kohl (eric.kohl@reactos.org) * Hervé Poussineau (hpoussin@reactos.org) * Colin Finck (colin@reactos.org) */ #ifndef _UMPNPMGR_PCH_ #define _UMPNPMGR_PCH_ #define WIN32_NO_STATUS #define _INC_WINDOWS #define COM_NO_WINDOWS_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include typedef struct { LIST_ENTRY ListEntry; WCHAR DeviceIds[ANYSIZE_ARRAY]; } DeviceInstallParams; typedef struct { LIST_ENTRY ListEntry; PWSTR pszName; } NOTIFY_ENTRY, *PNOTIFY_ENTRY; /* install.c */ extern HANDLE hUserToken; extern HANDLE hInstallEvent; extern HANDLE hNoPendingInstalls; /* Device-install event list */ extern HANDLE hDeviceInstallListMutex; extern LIST_ENTRY DeviceInstallListHead; extern HANDLE hDeviceInstallListNotEmpty; BOOL SetupIsActive(VOID); DWORD WINAPI DeviceInstallThread( LPVOID lpParameter); /* rpcserver.c */ DWORD WINAPI RpcServerThread( LPVOID lpParameter); /* umpnpmgr.c */ extern HKEY hEnumKey; extern HKEY hClassKey; extern BOOL g_IsUISuppressed; BOOL GetSuppressNewUIValue(VOID); #endif /* _UMPNPMGR_PCH_ */