home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / M2V11-2.LHA / modula / dice / dice.lha / examples / shared_lib / test-protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-15  |  670 b   |  22 lines

  1.  
  2. /*
  3.  *  TEST-PROTOS.H
  4.  *
  5.  *  contains prototypes for the library interface functions ONLY.  This
  6.  *  is usually different from <lib-protos.h> in DTMP:SHARTEST/ because
  7.  *  the latter will contain prototypes for internal library routines as
  8.  *  well as external ones.  TEST-PROTOS.H only contains prototypes for
  9.  *  external (interface) routines.
  10.  *
  11.  *  this file could easily be automatically generated but I haven't put
  12.  *  together an example of that yet.
  13.  */
  14.  
  15. #define LibCall __geta4 __regargs
  16.  
  17. extern LibCall void LockTestLib(void);
  18. extern LibCall void UnLockTestLib(void);
  19. extern LibCall void PostString(const char *);
  20. extern LibCall long GetString(char *, long);
  21.  
  22.