home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 May / PCWorld_1999-05_cd.bin / software / Vyzkuste / inprise / INTRBASE_55 / EXAMPLES / API / EXAMPLE.H < prev    next >
Text File  |  1998-10-18  |  419b  |  18 lines

  1. #if defined __STDC__ || defined __BORLANDC__ || defined _MSC_VER
  2. #define PROTO(args)        args
  3. #define ARG(type, arg)        type arg
  4. #define ARGLIST(arg)
  5. #else
  6. #define PROTO(args)        ()
  7. #define ARG(type, arg)        arg
  8. #define ARGLIST(arg)    arg;
  9. #endif
  10.  
  11. #if defined __BORLANDC__ && defined __WIN32__
  12. #define EXPORT _export
  13. #else
  14. #define EXPORT
  15. #endif
  16.  
  17. #define ERREXIT(status, rc)    {isc_print_status(status); return rc;}
  18.