CreatePrivateNamespaceW method

Pointer<Void> CreatePrivateNamespaceW(
  1. Pointer<SECURITY_ATTRIBUTES> lpPrivateNamespaceAttributes,
  2. Pointer<Void> lpBoundaryDescriptor,
  3. Pointer<Uint16> lpAliasPrefix
)

Implementation

ffi.Pointer<ffi.Void> CreatePrivateNamespaceW(
  ffi.Pointer<SECURITY_ATTRIBUTES> lpPrivateNamespaceAttributes,
  ffi.Pointer<ffi.Void> lpBoundaryDescriptor,
  ffi.Pointer<ffi.Uint16> lpAliasPrefix,
) {
  return _CreatePrivateNamespaceW(
    lpPrivateNamespaceAttributes,
    lpBoundaryDescriptor,
    lpAliasPrefix,
  );
}