OutputDebugStringA method

void OutputDebugStringA(
  1. Pointer<Int8> lpOutputString
)

Implementation

void OutputDebugStringA(
  ffi.Pointer<ffi.Int8> lpOutputString,
) {
  return (_OutputDebugStringA ??=
      _dylib.lookupFunction<_c_OutputDebugStringA, _dart_OutputDebugStringA>(
          'OutputDebugStringA'))(
    lpOutputString,
  );
}