home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 377b.lha / devices / printer / xerox / macros.i < prev    next >
Encoding:
Text File  |  1980-02-03  |  1.7 KB  |  61 lines

  1. * Copyright (c) 1990 Commodore-Amiga, Inc.
  2. *
  3. * This example is provided in electronic form by Commodore-Amiga, Inc. for
  4. * use with the 1.3 revisions of the Addison-Wesley Amiga reference manuals. 
  5. * The 1.3 Addison-Wesley Amiga Reference Manual series contains additional
  6. * information on the correct usage of the techniques and operating system
  7. * functions presented in this example.  The source and executable code of
  8. * this example may only be distributed in free electronic form, via bulletin
  9. * board or as part of a fully non-commercial and freely redistributable
  10. * diskette.  Both the source and executable code (including comments) must
  11. * be included, without modification, in any copy.  This example may not be
  12. * published in printed form or distributed with any commercial product.
  13. * However, the programming techniques and support routines set forth in
  14. * this example may be used in the development of original executable
  15. * software products for Commodore Amiga computers.
  16. * All other rights reserved.
  17. * This example is provided "as-is" and is subject to change; no warranties
  18. * are made.  All use is at your own risk.  No liability or responsibility
  19. * is assumed.
  20. *
  21.  
  22. *------ external definition macros -----------------------------------
  23.  
  24. XREF_EXE    MACRO
  25.     XREF        _LVO\1
  26.         ENDM
  27.  
  28. XREF_DOS    MACRO
  29.     XREF        _LVO\1
  30.         ENDM
  31.  
  32. XREF_GFX    MACRO
  33.     XREF        _LVO\1
  34.         ENDM
  35.  
  36. XREF_ITU    MACRO
  37.     XREF        _LVO\1
  38.         ENDM
  39.  
  40. *------ library dispatch macros --------------------------------------
  41.  
  42. CALLEXE        MACRO
  43.         CALLLIB _LVO\1
  44.         ENDM
  45.  
  46. LINKEXE        MACRO
  47.         LINKLIB _LVO\1,_SysBase
  48.         ENDM
  49.  
  50. LINKDOS        MACRO
  51.         LINKLIB _LVO\1,_DOSBase
  52.         ENDM
  53.  
  54. LINKGFX        MACRO
  55.         LINKLIB _LVO\1,_GfxBase
  56.         ENDM
  57.  
  58. LINKITU        MACRO
  59.         LINKLIB _LVO\1,_IntuitionBase
  60.         ENDM
  61.