home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PRESPM.ZIP / FNTDEMO.DEF < prev    next >
Text File  |  1991-04-15  |  3KB  |  60 lines

  1. ; Module Definition File for FntDemo for EASEL Dynalink Library
  2. ;     (c) Copyright Brian J. Buck 1990, All rights reserved.
  3. ;
  4. ;     This program MAY be used for any demonstration or commercial
  5. ;     purpose, except that the source code may NOT be sold.
  6. ;     If you make any change to the program, you must either include
  7. ;     a description of the change with your name while still retaining
  8. ;     this copyright notice, or totally remove this copyright notice,
  9. ;     in which case you may not redistribute the source.
  10. ;     No warranties are given or implied;  you break it and you own
  11. ;     both halves.
  12. ;
  13. ;     This basically means you can't make a profit selling it (not that
  14. ;     this is a realistic possibility, anyway), and if you mess around
  15. ;     with it, either add your name, or remove mine.  The only real
  16. ;     reason to put these copyright notices on is to prevent someone
  17. ;     else from copyrighting your code that omitted the notice,
  18. ;     leading to a situation where you're no longer allowed to use your 
  19. ;     own code.
  20. ;
  21. ;     Brian J. Buck
  22. ;         Internet . . . . :  76666.60@Compuserve.COM
  23. ;         Compuserve . . . :  76666,60
  24. ;         Phone  . . . . . :  (708) 620-5000 
  25.  
  26. LIBRARY      FntDemo    INITINSTANCE    ; Specifies that file being created
  27.                                         ;     is a dynamic link module.
  28.  
  29. DESCRIPTION 'FntDemo for EASEL Dynalink Library (c) Copyright Brian J. Buck 1990, All rights reserved'
  30.                                         ; This string is imbedded into the
  31.                                         ;     library module file.
  32.  
  33. PROTMODE                                ; It will run only in protect mode
  34.  
  35.  
  36. DATA        PRELOAD                     ; EASEL requires PRELOAD
  37.  
  38. CODE        PRELOAD                     ; EASEL requires PRELOAD
  39.  
  40. HEAPSIZE    0                           ; EASEL requirement
  41.  
  42. EXPORTS                                 ; Exports from this library - these
  43.                                         ;     are the entry points for the
  44.                                         ;     routines
  45.     ChangeHANDLE_FontToDefault          @1
  46.     ChangeHANDLE_FontToPOINTSFACE_      @2
  47.     ErrMsgFromChangeHANDLEFont          @3   
  48.  
  49.     MakeHANDLE_PP_COLOR_                @4
  50.     MakeHANDLE_ForeCOLOR_               @5
  51.     MakeHANDLE_BackCOLOR_               @6
  52.     MakeHANDLE_HiliteForeCOLOR_         @7
  53.     MakeHANDLE_HiliteBackCOLOR_         @8 
  54.     MakeHANDLE_DisabledForeCOLOR_       @9
  55.     MakeHANDLE_DisabledBackCOLOR_       @10
  56.     MakeHANDLE_BorderCOLOR_             @11
  57.     ErrMsgFromMakeHANDLECOLOR           @12
  58.  
  59. ;
  60.