home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / audio / mciapp / mciapp16.def < prev    next >
Text File  |  1997-10-05  |  1KB  |  46 lines

  1. ;===========================================================================;
  2. ;
  3. ;   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  4. ;   ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
  5. ;   TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR
  6. ;   A PARTICULAR PURPOSE.
  7. ;
  8. ;   Copyright (C) 1993 - 1997 Microsoft Corporation. All Rights Reserved.
  9. ;
  10. ;   app16.def
  11. ;
  12. ;   Description:
  13. ;       This is the module definition file...
  14. ;
  15. ;===========================================================================;
  16.  
  17. NAME        MCIAPP      WINDOWAPI
  18.  
  19. DESCRIPTION 'Media Control Interface (MCI) Script Application (Win 16)'
  20.  
  21. EXETYPE     WINDOWS
  22.  
  23. PROTMODE
  24.  
  25. STUB        'WINSTUB.EXE'
  26.  
  27. CODE        MOVEABLE DISCARDABLE    LOADONCALL
  28. DATA        MOVEABLE MULTIPLE       PRELOAD
  29.  
  30. SEGMENTS    _TEXT       MOVEABLE                PRELOAD
  31.             INIT_TEXT   MOVEABLE DISCARDABLE    PRELOAD
  32.             MCIAPP_TEXT MOVEABLE DISCARDABLE    PRELOAD
  33.  
  34.  
  35. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
  36. ;   NOTE: some of the functions that are called in this application
  37. ;   require a LOT of stack space: most notably are the COMMDLG functions
  38. ;   (ie GetOpenFileName, etc). a stacksize of ~8k is probably good enough.
  39. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
  40.  
  41. HEAPSIZE    16384
  42. STACKSIZE   8192
  43.  
  44. EXPORTS     AppWndProc
  45.             AboutDlgProc
  46.