home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gfx / superview-lib-9.12.lha / SuperView-Lib / Programmers / include / svoperators / svoperators.h < prev   
Encoding:
C/C++ Source or Header  |  1994-12-28  |  1.3 KB  |  36 lines

  1. /* svoperators/svoperators.h        */
  2. /* Version    : 9.10                */
  3. /* Date       : 10.12.1994          */
  4. /* Written by : Andreas R. Kleinert */
  5.  
  6. /* SVOperator-Version V1.x+ */
  7.  
  8. #ifndef SVOPERATORS_SVOPERATORS_H
  9. #define SVOPERATORS_SVOPERATORS_H
  10.  
  11.  
  12. struct SVP_OperatorNode
  13. {
  14.  struct Node svp_Node;              /* chaining Node                         */
  15.                                     /* (svp_Node->ln_Name MUST               */
  16.                                     /*  point to svp_FileName !) -10.12.94   */
  17.  
  18.  ULONG svp_Version;                 /* Library-Version of svoperator         */
  19.  
  20.  UBYTE svp_FileName [108];          /* use 30, as in struct FileInfoBlock    */
  21.  
  22.  UBYTE svp_Description [80];        /* e.g. "24 Bit to HAM6"                 */
  23.  UBYTE svp_Author      [80];        /* e.g. "me :-)"                         */
  24.  
  25.  ULONG svp_Flags;                   /* SVP_FLAG_... (see below)              */
  26. };
  27.  
  28. #define SVP_VERSION (1)             /* If this Version, which depends on the */
  29.                                     /* svobject's Library-Version, is set,   */
  30.                                     /* it is guaranteed, that at least the   */
  31.                                     /* above information is available.       */
  32.  
  33. #define SVP_FLAGS_RESERVED (0xFFFFFFFF) /* none used yet */
  34.  
  35. #endif /* SVOPERATORS_SVOPERATORS_H */
  36.