home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_03 / 2n03019a < prev    next >
Text File  |  1991-01-17  |  1KB  |  47 lines

  1. ;Begin installation file EXAMPLE.IN$.
  2.  
  3.  
  4. CLASS_NAME        "Example"    ; Always the first item in an installation file.
  5.                     ; The CLASS_NAME identifies the type of
  6.                     ; object being installed and will be kept as
  7.                     ; a class property
  8.  
  9. TEXT_ID        "Example"    ; This is the name to be displayed in the
  10.                     ; 'Create A New' dialog box. It is also kept
  11.                     ; as a class property.
  12.  
  13. ICON_NAME        "Example"    ; Identifies the icon to be used to identify objects
  14.                     ; of this class on the desktop.
  15.  
  16. ICON_FILE
  17.     EXAMPLE.ICO            ; File containing icon
  18. END_NAMES
  19.  
  20. OVERWRITE_OLD_OBJECT        ; Allows update
  21.  
  22. EXECUTABLE_FILE    EXAMPLE.NWE    ; Program to execute for object functions
  23.  
  24. MODULE_FILENAMES
  25.     EXAMPLE.NWE        ; Executable file names to associate with objects
  26. END_NAMES
  27.  
  28. OBJECT_FILENAMES            ; Data file names to associate with objects
  29. END_NAMES
  30.  
  31. HAVE_METHODS            ; Methods supported by objects of this class
  32.     CREATE_OMF
  33.     OPEN
  34.     TERMINATE
  35.     DIE_PLEASE
  36. END_METHODS
  37.  
  38. OBJECT_PROPERTIES        ; Define properties
  39.     PROP_SYSTEM
  40.         BEGIN_VALUES    ; A blank master for PROP_SYSTEM is defined.
  41.         END_VALUES        ; PROP_SYSTEM is required for 'Create A New'
  42. END_PROPERTIES
  43.  
  44. ;end of installation file
  45.  
  46.  
  47.