Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

  1. /****************************************************************************
  2. MODULE: SW_GLOBS.CPP
  3. Tab Settings: 5 9
  4. Copyright 1995, 1996, Microsoft Corporation, All Rights Reserved.
  5. PURPOSE: SWFF_PRO Global Variables
  6. FUNCTIONS:
  7. Author(s): Name:
  8. ---------- ----------------
  9. MEA Manolito E. Adan
  10. Revision History:
  11. -----------------
  12. Version Date Author Comments
  13. ------- ------ ----- -------------------------------------------
  14. 1.1 15-May-97 MEA original
  15. 20-Mar-99 waltw Added validity checks into functions that use
  16. g_pJoltMidi. Because of structure of code,
  17. some of these are redundant but safer than
  18. depending on call tree not changing.
  19. ****************************************************************************/
  20. #include <windows.h>
  21. #include "midi_obj.hpp"
  22. //
  23. // Globals
  24. //
  25. #ifdef _DEBUG
  26. char g_cMsg[160];
  27. TCHAR szDeviceName[MAX_SIZE_SNAME] = {"Microsoft SideWinder Force Feedback Pro"};
  28. #endif
  29. //
  30. // *** Global on per process space only
  31. //
  32. CJoltMidi *g_pJoltMidi = NULL;
  33. // *** End of Globals on per process space