mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Added semi-stub for GetCurrentHwProfileA.
svn path=/trunk/; revision=6244
This commit is contained in:
parent
7301a9d4b0
commit
d2734276cb
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue