home *** CD-ROM | disk | FTP | other *** search
/ Freelog 42 / Freelog042.iso / Alu / Ancestrologie / Sources / InterBase_WI-V6.0.1-server.ZIP / examples / api / example.h < prev    next >
Text File  |  2001-01-05  |  1KB  |  36 lines

  1. /*
  2.  * The contents of this file are subject to the Interbase Public
  3.  * License Version 1.0 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy
  5.  * of the License at http://www.Inprise.com/IPL.html
  6.  *
  7.  * Software distributed under the License is distributed on an
  8.  * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
  9.  * or implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *
  12.  * The Original Code was created by Inprise Corporation
  13.  * and its predecessors. Portions created by Inprise Corporation are
  14.  *
  15.  * Copyright (C) 2000 Inprise Corporation
  16.  * All Rights Reserved.
  17.  * Contributor(s): ______________________________________.
  18.  */
  19. #if defined __STDC__ || defined __BORLANDC__ || defined _MSC_VER
  20. #define args        args
  21. #define ARG(type, arg)        type arg
  22. #define ARGLIST(arg)
  23. #else
  24. #define args        ()
  25. #define ARG(type, arg)        arg
  26. #define ARGLIST(arg)    arg;
  27. #endif
  28.  
  29. #if defined __BORLANDC__ && defined __WIN32__
  30. #define EXPORT _export
  31. #else
  32. #define EXPORT
  33. #endif
  34.  
  35. #define ERREXIT(status, rc)    {isc_print_status(status); return rc;}
  36.