UNPKG

win32-api

Version:

FFI definitions of windows win32 api for node-ffi

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