Added semi-stub for GetCurrentHwProfileA.

svn path=/trunk/; revision=6244
This commit is contained in:
Filip Navara 2003-10-05 17:12:32 +00:00
parent 7301a9d4b0
commit d2734276cb

View file

@ -5,6 +5,7 @@
#define NTOS_MODE_USER #define NTOS_MODE_USER
#include <ntos.h> #include <ntos.h>
#include <windows.h> #include <windows.h>
#include <string.h>
/* /*
* @unimplemented * @unimplemented
@ -854,7 +855,10 @@ GetCurrentHwProfileA (
LPHW_PROFILE_INFOA lpHwProfileInfo LPHW_PROFILE_INFOA lpHwProfileInfo
) )
{ {
return(FALSE); lpHwProfileInfo->dwDockInfo = 2 /*DOCKINFO_DOCKED*/;
strcpy(lpHwProfileInfo->szHwProfileGuid,"{12340001-1234-1234-1234-1233456789012}");
strcpy(lpHwProfileInfo->szHwProfileName,"ReactOS Profile");
return(TRUE);
} }
/* /*