ReactOS 0.4.15-dev-8434-g155a7c7
windnsp.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

PVOID WINAPI DnsApiAlloc (IN DWORD Size)
 
PVOID WINAPI DnsQueryConfigAllocEx (IN DNS_CONFIG_TYPE Config, OUT PVOID pBuffer, IN OUT PDWORD pBufferLength)
 
PVOID WINAPI DnsApiFree (IN PVOID pBuffer)
 

Function Documentation

◆ DnsApiAlloc()

PVOID WINAPI DnsApiAlloc ( IN DWORD  Size)

Definition at line 25 of file memory.c.

26{
27 return RtlAllocateHeap(RtlGetProcessHeap(), 0, Size);
28}
PVOID NTAPI RtlAllocateHeap(IN PVOID HeapHandle, IN ULONG Flags, IN SIZE_T Size)
Definition: heap.c:590
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Definition: wdfdevice.h:4533

◆ DnsApiFree()

PVOID WINAPI DnsApiFree ( IN PVOID  pBuffer)

Definition at line 18 of file memory.c.

19{
20 RtlFreeHeap(RtlGetProcessHeap(), 0, Data);
21}
BOOLEAN NTAPI RtlFreeHeap(IN PVOID HeapHandle, IN ULONG Flags, IN PVOID HeapBase)
Definition: heap.c:608

Referenced by SaBlob_Query().

◆ DnsQueryConfigAllocEx()

PVOID WINAPI DnsQueryConfigAllocEx ( IN DNS_CONFIG_TYPE  Config,
OUT PVOID  pBuffer,
IN OUT PDWORD  pBufferLength 
)

Definition at line 32 of file memory.c.

35{
36 return NULL;
37}
#define NULL
Definition: types.h:112

Referenced by SaBlob_Query().