UNPKG

win32-api

Version:

FFI definitions of windows win32 api for node-ffi

12 lines 406 B
import { load as _load } from 'win32-def'; import { DllNames } from '../../lib/types.js'; import { DefComctl32 } from './api.def.js'; import { Comctl32 } from './api.types.js'; export { Comctl32, DefComctl32, }; export const dllName = DllNames.comctl32; export const load = (fns) => _load({ dll: dllName + '.dll', dllFuncs: DefComctl32, usedFuncNames: fns, }); //# sourceMappingURL=index.js.map