home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / duel / input.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-15  |  548 b   |  24 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File:        input.h
  6.  *  Content:    input routines include file
  7.  *
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifndef _INPUT_H
  12. #define _INPUT_H
  13.  
  14. #include <dinput.h>
  15. #include "duel.h"
  16.  
  17. BOOL            InitInput(void);
  18. void            DI_ReadKeys(void);
  19. void            CleanupInput(void);
  20. BOOL                    ReacquireInputDevices(void);
  21.  
  22.  
  23. #endif // _INPUT_H
  24.