mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
Add stubs for keyboard and mouse class installers
svn path=/trunk/; revision=20955
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* PROJECT: ReactOS system libraries
|
||||
* LICENSE: GPL - See COPYING in the top level directory
|
||||
* FILE: drivers/storage/mountmgr/database.c
|
||||
* PURPOSE: Class installers
|
||||
* PROGRAMMERS: Copyright 2006 Hervé Poussineau ([email protected])
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <setupapi.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
DWORD WINAPI
|
||||
KeyboardClassInstaller(
|
||||
IN DI_FUNCTION InstallFunction,
|
||||
IN HDEVINFO DeviceInfoSet,
|
||||
IN PSP_DEVINFO_DATA DeviceInfoData OPTIONAL)
|
||||
{
|
||||
switch (InstallFunction)
|
||||
{
|
||||
default:
|
||||
DPRINT("Install function %u ignored\n", InstallFunction);
|
||||
return ERROR_DI_DO_DEFAULT;
|
||||
}
|
||||
}
|
||||
|
||||
DWORD WINAPI
|
||||
MouseClassInstaller(
|
||||
IN DI_FUNCTION InstallFunction,
|
||||
IN HDEVINFO DeviceInfoSet,
|
||||
IN PSP_DEVINFO_DATA DeviceInfoData OPTIONAL)
|
||||
{
|
||||
switch (InstallFunction)
|
||||
{
|
||||
default:
|
||||
DPRINT("Install function %u ignored\n", InstallFunction);
|
||||
return ERROR_DI_DO_DEFAULT;
|
||||
}
|
||||
}
|
||||
@@ -5,14 +5,14 @@ EXPORTS
|
||||
;GenerateScsiHwIdList
|
||||
InitializeSetupActionLog@4
|
||||
InstallReactOS@4
|
||||
;KeyboardClassInstaller
|
||||
KeyboardClassInstaller@12
|
||||
LogItem@8
|
||||
;LogItem0
|
||||
;LogItem1
|
||||
;LogItem2
|
||||
;LogItem3
|
||||
;LogItemN
|
||||
;MouseClassInstaller
|
||||
MouseClassInstaller@12
|
||||
;PnPInitializationThread
|
||||
;RepairStartMenuItems
|
||||
;ReportError
|
||||
|
||||
@@ -20,7 +20,8 @@
|
||||
<library>ole32</library>
|
||||
<library>shell32</library>
|
||||
<library>shlwapi</library>
|
||||
<library>pseh</library>
|
||||
<library>pseh</library>
|
||||
<file>classinst.c</file>
|
||||
<file>dllmain.c</file>
|
||||
<file>install.c</file>
|
||||
<file>logfile.c</file>
|
||||
|
||||
Reference in New Issue
Block a user