home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / SAMPLES / CDDEMO / CDDEMO.DE_ / CDDEMO.DE
Encoding:
Text File  |  1993-02-08  |  864 b   |  30 lines

  1. NAME         cddemo       ; application's module name
  2.  
  3. DESCRIPTION  'Common Dialogs Demonstration'
  4.  
  5. EXETYPE      WINDOWS       ; required for all Windows applications
  6.  
  7. STUB         'WINSTUB.EXE' ; Generates error message if application
  8.                ; is run without Windows
  9.  
  10. CODE  PRELOAD MOVEABLE DISCARDABLE
  11.  
  12. DATA  PRELOAD MOVEABLE MULTIPLE
  13.  
  14. HEAPSIZE     1024
  15.  
  16. SEGMENTS
  17.              INIT_TEXT        MOVEABLE PRELOAD DISCARDABLE
  18.              CDDEMO_TEXT      MOVEABLE LOADONCALL DISCARDABLE
  19.              ERROR_TEXT       MOVEABLE LOADONCALL DISCARDABLE
  20.                    _TEXT      PRELOAD
  21.  
  22. EXPORTS
  23.     MainWndProc     @1   ; name of window processing function
  24.     About            @2   ; name of "About" processing function
  25.         FileOpenHook    @3
  26.         FindHook        @4
  27.         FindReplaceHook @5
  28.         PrintDlgProc    @6
  29.         AbortProc       @7
  30.