CreateDirectoryTransactedW method

int CreateDirectoryTransactedW(
  1. Pointer<Uint16> lpTemplateDirectory,
  2. Pointer<Uint16> lpNewDirectory,
  3. Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  4. Pointer<Void> hTransaction,
)

Implementation

int CreateDirectoryTransactedW(
  ffi.Pointer<ffi.Uint16> lpTemplateDirectory,
  ffi.Pointer<ffi.Uint16> lpNewDirectory,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return _CreateDirectoryTransactedW(
    lpTemplateDirectory,
    lpNewDirectory,
    lpSecurityAttributes,
    hTransaction,
  );
}