29 lines
878 B
Modula-2
29 lines
878 B
Modula-2
; vbapi.def - VB API import library definition
|
|
;
|
|
; Defines the VB API functions exported by the VBAPI module.
|
|
; Use with IMPLIB to generate the import library:
|
|
;
|
|
; implib vbapi.lib vbapi.def
|
|
;
|
|
; The VBAPI module is the VB runtime that exports these functions.
|
|
; When VB loads a VBX, it resolves imports against this module.
|
|
|
|
LIBRARY VBAPI
|
|
|
|
EXPORTS
|
|
VBRegisterModel @100
|
|
VBDefControlProc @101
|
|
VBFireEvent @102
|
|
VBCreateHsz @103
|
|
VBDestroyHsz @104
|
|
VBDerefHsz @105
|
|
VBCreateHlstr @106
|
|
VBDestroyHlstr @107
|
|
VBGetHlstr @108
|
|
VBSetHlstr @109
|
|
VBDerefControl @110
|
|
VBGetMode @111
|
|
VBSetControlProperty @112
|
|
VBGetControlProperty @113
|
|
VBGetControlHwnd @114
|
|
VBGetHInstance @115
|