home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0040 - 0049 / ibm0040-0049 / ibm0040.tar / ibm0040 / BCPPOWL1.ZIP / OWLINC.ZIP / OWL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-28  |  778 b   |  35 lines

  1. // ObjectWindows - (C) Copyright 1991 by Borland International
  2.  
  3. #ifndef __OWL_H
  4. #define __OWL_H
  5.  
  6. // ---------------------------------------------------
  7. // This include file causes all the include files 
  8. // necessary for basic owl functionality to be included. 
  9. //----------------------------------------------------
  10.  
  11. #if defined(_CLASSDLL) || defined(__DLL__)
  12. #  define _RTLDLL
  13. #endif
  14.  
  15. #if !defined(__DEFS_H)
  16. #include <_defs.h>
  17. #endif
  18.  
  19. #if !defined(__APPLICAT_H)
  20. #include <applicat.h>
  21. #endif
  22.  
  23. #if !defined(NODLLREF)
  24. #  if defined(_CLASSDLL)
  25.       extern int DLLRef;
  26.       static int DLLRefInternal = DLLRef;
  27. #  endif
  28. #endif
  29.  
  30. extern unsigned short far  _EXPFUNC OWLGetVersion();
  31.  
  32. const unsigned short OWLVersion = 0x0100; // Version 1.0
  33.  
  34. #endif
  35.