CreateDirectoryW method

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

Implementation

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