UNPKG

win32-api

Version:

FFI definitions of windows win32 api for node-ffi

9 lines 431 B
import type { FLib, LoadOptions } from 'win32-def'; import { DllNames } from '../../lib/types.js'; import { DefKernel32 } from './api.def.js'; import { Kernel32 } from './api.types.js'; export { DefKernel32, Kernel32, }; export declare const dllName = DllNames.kernel32; export type LibKernel32 = FLib<Kernel32>; export declare const load: (fns?: LoadOptions["usedFuncNames"]) => FLib<Kernel32>; //# sourceMappingURL=index.d.ts.map