win32-def
Version:
win32 definitions for node-ffi
19 lines • 606 B
JavaScript
import * as D from '../../../lib/common.def.js';
import { genStruct } from '../struct.helper.js';
const key = 'PRINTER_INFO_6';
const ptr = `${key}*`;
const init = {
dwStatus: D.DWORD,
};
export const PPRINTER_INFO_6 = ptr;
export const PRINTER_INFO_6_Name = key;
export const PRINTER_INFO_6_Init = init;
/**
* PRINTER_INFO_6 structure,
* structure specifies detailed printer information.
* @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-6
*/
export function PRINTER_INFO_6_Factory() {
return genStruct(init, key, ptr);
}
//# sourceMappingURL=PRINTER_INFO_6.js.map