CreatePrivateNamespaceA method

Pointer<Void> CreatePrivateNamespaceA(
  1. Pointer<SECURITY_ATTRIBUTES> lpPrivateNamespaceAttributes,
  2. Pointer<Void> lpBoundaryDescriptor,
  3. Pointer<Int8> lpAliasPrefix
)

Implementation

ffi.Pointer<ffi.Void> CreatePrivateNamespaceA(
  ffi.Pointer<SECURITY_ATTRIBUTES> lpPrivateNamespaceAttributes,
  ffi.Pointer<ffi.Void> lpBoundaryDescriptor,
  ffi.Pointer<ffi.Int8> lpAliasPrefix,
) {
  return _CreatePrivateNamespaceA(
    lpPrivateNamespaceAttributes,
    lpBoundaryDescriptor,
    lpAliasPrefix,
  );
}