CreateDirectoryFromAppW method

int CreateDirectoryFromAppW(
  1. Pointer<Uint16> lpPathName,
  2. Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes
)

Implementation

int CreateDirectoryFromAppW(
  ffi.Pointer<ffi.Uint16> lpPathName,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
) {
  return _CreateDirectoryFromAppW(
    lpPathName,
    lpSecurityAttributes,
  );
}