home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / DESQVIEW / TECH / DVA_TCPP.ZIP / INDV.C < prev   
Encoding:
C/C++ Source or Header  |  1990-08-06  |  1.3 KB  |  35 lines

  1. /***************************************************************************\
  2. *
  3. *
  4. *   PROCEDURE         - In DESQview Flag
  5. *
  6. *   PURPOSE           - Set to 0 if DESQview is not running.  Set to the 
  7. *                       version of the DV API active if DESQview is running.
  8. *                       The high byte of inDV is the major version number,
  9. *                       the low byte is the minor.
  10. *
  11. *   GENERAL ALGORITHM - inDV is set by the dv_get_version() function call.
  12. *
  13. *   INPUT             - none.
  14. *                     
  15. *   OUTPUT            - none.
  16. *
  17. *   SYSTEM            - Borland's Turbo C++ v1.0 on an EPSON EQUITY III+
  18. *                       running MS-DOS v4.01 & DESQview v2.26.  Should operate 
  19. *                       under any MS/PC-DOS 2.x or greater & DESQview 2.x or 
  20. *                       greater.
  21. *
  22. *   HISTORY:
  23. *      90-07-28       - Initiated Mark Potter
  24. *
  25. \***************************************************************************/
  26.  
  27. #include "dvaware.h"
  28.  
  29. unsigned int inDV = 0;                  // flag indicating if in DESQview =0
  30.                                         // if DESQview not active, =DESQview 
  31.                                         // version otherwise, hi=major 
  32.                                         // version, lo=minor version.
  33.  
  34. // END INDV.CPP
  35.