win32-def
Version:
win32 definitions for node-ffi
19 lines • 646 B
JavaScript
import * as D from '../../../lib/common.def.js';
import { genStruct } from '../struct.helper.js';
const key = 'INITCOMMONCONTROLSEX';
const ptr = `${key}*`;
const init = {
dwSize: D.DWORD,
dwICC: D.DWORD,
};
export const LPINITCOMMONCONTROLSEX = ptr;
export const INITCOMMONCONTROLSEX_Name = key;
export const INITCOMMONCONTROLSEX_Init = init;
/**
* INITCOMMONCONTROLSEX structure
* @link https://learn.microsoft.com/en-us/windows/win32/api/commctrl/nf-commctrl-initcommoncontrolsex
*/
export function INITCOMMONCONTROLSEX_Factory() {
return genStruct(init, key, ptr, ['dwSize']);
}
//# sourceMappingURL=INITCOMMONCONTROLSEX.js.map