home *** CD-ROM | disk | FTP | other *** search
- public Pool
-
- FUNCTION equ 2 ;types of procs
- HANDLER equ 1
-
- PASS_TO_HPAD equ 2 ;pass msg to HPAD directly
- PASS equ 0 ;pass to next object
- STOP equ 1 ;don't pass the msg on
- ERROR equ 3 ;stop all scripts
-
- PoolStruct STRUC
- func_name dd ? ;DWORD pointer to name of procedure
- entry_point dd ? ;DWORD pointer to procedure
- reserved dw ? ;reserved
- msg_type dw ? ;FUNCTION or HANDLER
- PoolStruct ENDS
-
- EXTRN __acrtused:ABS ;link in HyperPAD's startup code