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

  1.  
  2. ; This is a part of the Microsoft Foundation Classes C++ library.
  3. ; Copyright (C) 1992 Microsoft Corporation
  4. ; All rights reserved.
  5. ;
  6. ; This source code is only intended as a supplement to the
  7. ; Microsoft Foundation Classes Reference and Microsoft
  8. ; QuickHelp and/or WinHelp documentation provided with the library.
  9. ; See these sources for detailed information regarding the
  10. ; Microsoft Foundation Classes product.
  11.  
  12. LIBRARY TESTDLL1
  13. DESCRIPTION  'TEST DLL containing 2 different doc/view classes' 
  14. EXETYPE      WINDOWS
  15.  
  16. CODE         LOADONCALL MOVEABLE DISCARDABLE
  17. DATA         PRELOAD MOVEABLE SINGLE
  18.  
  19. SEGMENTS
  20.     _TEXT   PRELOAD MOVEABLE DISCARDABLE
  21.     WEP_TEXT PRELOAD MOVEABLE DISCARDABLE
  22.  
  23. HEAPSIZE     1024
  24.  
  25. EXPORTS
  26.     WEP @1 RESIDENTNAME PRIVATE ;; required WEP entry point (uses library WEP)
  27.  
  28.     ; Explicitly exported initialization routine
  29.     INITTESTDLL1 @2 NONAME
  30.  
  31.     ; other explicit exports can go here
  32.  
  33.     ;
  34.  
  35.