37 lines
779 B
Modula-2
37 lines
779 B
Modula-2
;------------------------------------------------------------------------------
|
|
; WINCHAT MODULE DEFINITION FILE (NT Specific)
|
|
; This is the module-definintion file for Windows NT
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
NAME WinChat
|
|
|
|
EXETYPE WINDOWS
|
|
PROTMODE
|
|
|
|
STUB 'WINSTUB.EXE'
|
|
|
|
CODE MOVEABLE PRELOAD
|
|
DATA MOVEABLE MULTIPLE PRELOAD
|
|
|
|
SEGMENTS
|
|
_TEXT MOVEABLE PRELOAD
|
|
_INIT MOVEABLE DISCARDABLE PRELOAD
|
|
_DLGS MOVEABLE DISCARDABLE PRELOAD
|
|
|
|
HEAPSIZE 1024
|
|
STACKSIZE 8192
|
|
|
|
|
|
EXPORTS
|
|
MainWndProc @1 ; name of window processing function
|
|
DdeCallback @2
|
|
|
|
dlgConnectProc @3
|
|
dlgPreferencesProc @4
|
|
|
|
EditProc @5
|
|
|
|
IMPORTS
|
|
SHELL32.SHELLABOUT
|
|
USER.WNETGETCAPS
|