home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
win_lrn
/
caret
/
crcaret.def
< prev
next >
Wrap
Text File
|
1988-08-10
|
630b
|
23 lines
;Module definition file for Generic
NAME CrCaret ; application's module name
DESCRIPTION 'Sample Microsoft Windows Application'
STUB 'WINSTUB.EXE' ; make sure it doesn't run w/o windows
CODE MOVEABLE ; code can be moved in memory
;DATA must be MULTIPLE if program can be invoked more than once
DATA MOVEABLE MULTIPLE
HEAPSIZE 1024
STACKSIZE 4096 ; recommended minimum for windows applications
; All functions which will be called by any other Windows routine
; must be exported
EXPORTS
CrCaretWndProc @1 ; name of window processing function
About @2 ; name of "About" processing function