- Return a default security descriptor when someone wants to retrieve the key security.
[reactos.git] / reactos / lib / advapi32 / misc / hwprofiles.c
1 /* $Id: hwprofiles.c,v 1.3 2004/08/15 17:03:14 chorns Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS system libraries
5 * FILE: lib/advapi32/misc/sysfun.c
6 * PURPOSE: advapi32.dll Hardware Functions
7 * PROGRAMMER: Steven Edwards
8 * UPDATE HISTORY:
9 * 20042502
10 */
11
12 #include "advapi32.h"
13 #include <debug.h>
14
15 /******************************************************************************
16 * GetCurrentHwProfileA [ADVAPI32.@]
17 *
18 * Get the current hardware profile.
19 *
20 * PARAMS
21 * pInfo [O] Destination for hardware profile information.
22 *
23 * RETURNS
24 * Success: TRUE. pInfo is updated with the hardware profile details.
25 * Failure: FALSE.
26 */
27 BOOL STDCALL
28 GetCurrentHwProfileA(LPHW_PROFILE_INFOA pInfo)
29 {
30 DPRINT("GetCurrentHwProfileA stub\n");
31 return 1;
32 }