Source code of Windows XP (NT5)
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.

43 lines
1.6 KiB

  1. /****************************************************************************/
  2. /* */
  3. /* INUSERDS - */
  4. /* */
  5. /* User's DS Global Variables */
  6. /* */
  7. /****************************************************************************/
  8. #include "user.h"
  9. //***** Initialization globals
  10. HINSTANCE hInstanceWin = NULL;
  11. HMODULE hModuleWin = NULL;
  12. //***** Comm driver globals
  13. int (FAR PASCAL *lpCommWriteString)(int, LPCSTR, WORD);
  14. /* Ptr to the comm driver's
  15. * commwritestring function. Only
  16. * exists in 3.1 drivers.
  17. */
  18. int (FAR PASCAL *lpCommReadString)(int, LPSTR, WORD);
  19. /* Ptr to the comm driver's
  20. * commreadstring function. Only
  21. * exists in 3.1 drivers.
  22. */
  23. BOOL (FAR PASCAL *lpCommEnableNotification)(int, HWND, int, int);
  24. /* Ptr to the comm driver's
  25. * commwritestring function. Only
  26. * exists in 3.1 drivers.
  27. */
  28. //***** PenWindows globals
  29. void (CALLBACK *lpRegisterPenAwareApp)(WORD i, BOOL fRegister) = NULL; /* Register dlg box as pen aware */
  30. //***** Driver management globals
  31. int cInstalledDrivers =0; /* Count of installed driver structs allocated*/
  32. HDRVR hInstalledDriverList =NULL; /* List of installable drivers */
  33. int idFirstDriver=-1; /* First driver in load order */
  34. int idLastDriver=-1; /* Last driver in load order */