home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / dos / prg / midas / lang.h < prev    next >
C/C++ Source or Header  |  1994-08-06  |  661b  |  28 lines

  1. /*      LANG.H
  2.  *
  3.  * Destination language dependent macros and conditional compilation
  4.  *
  5.  * Copyright 1994 Petteri Kangaslampi and Jarno Paananen
  6.  *
  7.  * This file is part of the MIDAS Sound System, and may only be
  8.  * used, modified and distributed under the terms of the MIDAS
  9.  * Sound System license, LICENSE.TXT. By continuing to use,
  10.  * modify or distribute this file you indicate that you have
  11.  * read the license and understand and accept it fully.
  12. */
  13.  
  14. #ifndef __LANG_H
  15. #define __LANG_H
  16.  
  17.  
  18. #ifdef __TP__
  19.     #define CALLING pascal
  20.     #define GLOBALVAR pascal
  21. #else
  22.     #define CALLING cdecl
  23.     #define GLOBALVAR
  24. #endif
  25.  
  26.  
  27. #endif
  28.