RegisterEventSourceW method

Pointer<Void> RegisterEventSourceW(
  1. Pointer<Uint16> lpUNCServerName,
  2. Pointer<Uint16> lpSourceName
)

Implementation

ffi.Pointer<ffi.Void> RegisterEventSourceW(
  ffi.Pointer<ffi.Uint16> lpUNCServerName,
  ffi.Pointer<ffi.Uint16> lpSourceName,
) {
  return (_RegisterEventSourceW ??= _dylib.lookupFunction<
      _c_RegisterEventSourceW,
      _dart_RegisterEventSourceW>('RegisterEventSourceW'))(
    lpUNCServerName,
    lpSourceName,
  );
}