CreateDirectoryTransactedA method

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

Implementation

int CreateDirectoryTransactedA(
  ffi.Pointer<ffi.Int8> lpTemplateDirectory,
  ffi.Pointer<ffi.Int8> lpNewDirectory,
  ffi.Pointer<LPSECURITY_ATTRIBUTES> lpSecurityAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return (_CreateDirectoryTransactedA ??= _dylib.lookupFunction<
      _c_CreateDirectoryTransactedA,
      _dart_CreateDirectoryTransactedA>('CreateDirectoryTransactedA'))(
    lpTemplateDirectory,
    lpNewDirectory,
    lpSecurityAttributes,
    hTransaction,
  );
}