WlanAllocateMemory function wlanapi

Pointer<NativeType> WlanAllocateMemory(
  1. int dwMemorySize
)

The WlanAllocateMemory function allocates memory. Any memory passed to other Native Wifi functions must be allocated with this function.

PVOID WlanAllocateMemory(
  DWORD dwMemorySize
);

Implementation

Pointer WlanAllocateMemory(int dwMemorySize) =>
    _WlanAllocateMemory(dwMemorySize);