ReactOS 0.4.16-dev-2274-gc61d98f
sysinfoansi.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: dll/win32/kernel32/client/sysinfoansi.c
5 * PURPOSE: System information functions (ANSI)
6 */
7
8/* INCLUDES ******************************************************************/
9
10#include <k32.h>
11
12/* Forward declarations (may be missing from headers depending on SDK level) */
13_Success_(return > 0)
16GetFirmwareEnvironmentVariableExA(
18 _In_ LPCSTR lpGuid,
21 _Out_opt_ PDWORD pdwAttribubutes);
22
23BOOL
27 _In_ LPCSTR lpGuid,
31
32/* FUNCTIONS ****************************************************************/
33
37GetFirmwareEnvironmentVariableA(
39 _In_ LPCSTR lpGuid,
42{
43 return GetFirmwareEnvironmentVariableExA(lpName, lpGuid, pBuffer, nSize, NULL);
44}
45
46BOOL
50 _In_ LPCSTR lpGuid,
53{
55 lpGuid,
56 pValue,
57 nSize,
59}
60
61/* EOF */
return
Definition: dirsup.c:529
#define NULL
Definition: types.h:112
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
BOOL WINAPI SetFirmwareEnvironmentVariableExA(_In_ LPCSTR lpName, _In_ LPCSTR lpGuid, _In_reads_bytes_opt_(nSize) PVOID pValue, _In_ DWORD nSize, _In_ DWORD dwAttributes)
Definition: firmware.c:156
PWCHAR pValue
#define VARIABLE_ATTRIBUTE_NON_VOLATILE
Definition: extypes.h:1758
#define _Out_opt_
Definition: no_sal2.h:214
#define _Success_(c)
Definition: no_sal2.h:84
#define _In_
Definition: no_sal2.h:158
#define _Out_writes_bytes_to_opt_(s, c)
Definition: no_sal2.h:240
#define _In_reads_bytes_opt_(s)
Definition: no_sal2.h:224
DWORD * PDWORD
Definition: pedump.c:68
PVOID pBuffer
BOOL WINAPI SetFirmwareEnvironmentVariableA(_In_ LPCSTR lpName, _In_ LPCSTR lpGuid, _In_reads_bytes_opt_(nSize) PVOID pValue, _In_ DWORD nSize)
Definition: sysinfoansi.c:48
DWORD dwAttributes
Definition: vdmdbg.h:34
_In_ LPCSTR lpName
Definition: winbase.h:2543
*nSize LPSTR _Inout_ LPDWORD nSize
Definition: winbase.h:1834
#define WINAPI
Definition: msvc.h:6
const char * LPCSTR
Definition: xmlstorage.h:183