CreateDirectoryTransactedA method

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

Implementation

int CreateDirectoryTransactedA(
  ffi.Pointer<ffi.Int8> lpTemplateDirectory,
  ffi.Pointer<ffi.Int8> lpNewDirectory,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return _CreateDirectoryTransactedA(
    lpTemplateDirectory,
    lpNewDirectory,
    lpSecurityAttributes,
    hTransaction,
  );
}