home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 377b.lha / libraries / samplelibrary / include / sample.h < prev    next >
Encoding:
C/C++ Source or Header  |  1980-02-03  |  403 b   |  18 lines

  1. /* sample.h
  2.  * prototypes and pragmas for our functions
  3.  * Note - the linker lib (sample.lib) is not required
  4.  * if pragmas are used.
  5.  */
  6.  
  7. #ifndef SAMPLE_H
  8. #define SAMPLE_H
  9.  
  10. /* protos for our sample.library functions */
  11. LONG AddThese(LONG,LONG);
  12. LONG Double(LONG);
  13. /* pragmas for our sample.library functions */
  14. #pragma libcall SampleBase Double 1e 1
  15. #pragma libcall SampleBase AddThese 24 1002
  16.  
  17. #endif
  18.