home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / MSMOUSE2.ZIP / UTILS.ZIP / EGATEST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-10  |  761 b   |  38 lines

  1. /*
  2.  * egatest.h
  3.  * 
  4.  * Module for ega test utility
  5.  *
  6.  * Copyright (c) 1988-1989, Microsoft Corporation.  All rights reserved.
  7.  *
  8.  *
  9.  *        Disclaimer:    This code is example code only,
  10.  *                and does not warranty any product
  11.  *                as being Microsoft compatible.
  12.  *                Microsoft will not be held responsible
  13.  *                for claims made pertaining to this software.
  14.  *
  15.  */
  16.  
  17. /* I N C L U D E S */
  18.  
  19. #include <stdio.h>
  20. #include <conio.h>
  21. #include <process.h>
  22. #include "cefunc.h"
  23.  
  24. /* E Q U A T E S */
  25.  
  26. #define        FALSE        0
  27. #define        TRUE        1
  28.  
  29. /* F U N C T I O N   D E F I N I T I O N S */
  30.  
  31. void main(void);
  32. void CheckEGAInterface(void);
  33. void TestF0F1(void);
  34. void TestF2F3(void);
  35. void TestF4F5(void);
  36. void TestF6F7(void);
  37. void EnableVideo(void);
  38.