home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 350.lha / DEdit_v2.01 / stringlib.i < prev   
Text File  |  1990-02-25  |  1KB  |  50 lines

  1. ;---------------------------------------------------------------------
  2. ; stringlib_def.i
  3. ;
  4. ; assembler defines for string.library
  5. ;
  6. ; History:
  7. ;    89-04-29  created
  8. ;---------------------------------------------------------------------
  9.  
  10. ;--library function offsets from base structure
  11.     LIBINIT
  12.     LIBDEF        LTOX
  13.     LIBDEF        XTOL
  14.     LIBDEF        STRREQ
  15.     LIBDEF        CENTER
  16.     LIBDEF        LENGTHOF
  17.     LIBDEF        COPYSTR
  18.     LIBDEF        CTOP
  19.     LIBDEF        BTOCSTR
  20.     LIBDEF        MIDSTR
  21.     LIBDEF        LEFTSTR
  22.     LIBDEF        RIGHTSTR
  23.     LIBDEF        INSERTSTR
  24.     LIBDEF        DELSTR
  25.  
  26. ;--stringlib data area structure - this is appended to Library structure
  27. ;--at offset LIB_SIZE
  28.     STRUCTURE    StringLibrary,LIB_SIZE
  29.     ULONG        stl_SysLib
  30.     ULONG        stl_DosLib
  31.     ULONG        stl_IntLib
  32.     ULONG        stl_SegList
  33.     UBYTE        stl_Flags
  34.     UBYTE        stl_Pad
  35.     LABEL        StringLib_Sizeof
  36.  
  37.     STRUCTURE    StrRequester,0
  38.     WORD        sr_LeftEdge
  39.     WORD        sr_TopEdge
  40.     LONG        sr_MaxOutWidth
  41.     APTR        sr_Prompt
  42.     APTR        sr_OutBuff
  43.     APTR             sr_Screen
  44.     LABEL        StrRequester_Sizeof
  45.  
  46. ;--name of my library
  47. STRINGLIBNAME    MACRO
  48.         dc.b    'string.library',0
  49.         ENDM
  50.