SetConsoleTextAttribute method
Implementation
int SetConsoleTextAttribute(
ffi.Pointer<ffi.Void> hConsoleOutput,
int wAttributes,
) {
return (_SetConsoleTextAttribute ??= _dylib.lookupFunction<
_c_SetConsoleTextAttribute,
_dart_SetConsoleTextAttribute>('SetConsoleTextAttribute'))(
hConsoleOutput,
wAttributes,
);
}