CreateDirectoryTransactedW method

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

Implementation

int CreateDirectoryTransactedW(
  ffi.Pointer<ffi.Uint16> lpTemplateDirectory,
  ffi.Pointer<ffi.Uint16> lpNewDirectory,
  ffi.Pointer<LPSECURITY_ATTRIBUTES> lpSecurityAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return (_CreateDirectoryTransactedW ??= _dylib.lookupFunction<
      _c_CreateDirectoryTransactedW,
      _dart_CreateDirectoryTransactedW>('CreateDirectoryTransactedW'))(
    lpTemplateDirectory,
    lpNewDirectory,
    lpSecurityAttributes,
    hTransaction,
  );
}