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.

75 lines
2.5 KiB

  1. /** FILE: cursors.h ********** Module Header *******************************
  2. *
  3. * Control panel applet for Cursors configuration. This file holds
  4. * definitions and other common include file items that deal with the
  5. * Cursors Dialog of Control Panel.
  6. *
  7. * History:
  8. * 12:30 on Tues 23 Apr 1991 -by- Steve Cathcart [stevecat]
  9. * Took base code from Win 3.1 source
  10. * 12-22-91 DarrinM Created from MOUSE.H
  11. * 29-Apr-1993 JonPa added string definitions
  12. *
  13. * Copyright (C) 1990-1991 Microsoft Corporation
  14. *
  15. *************************************************************************/
  16. //==========================================================================
  17. // Include files
  18. //==========================================================================
  19. #include "dialogs.h"
  20. //==========================================================================
  21. // Definitions and Typedefs
  22. //==========================================================================
  23. #define IDS_NAME 1
  24. #define IDS_INFO 2
  25. #define IDS_CUR_NOMEM 3
  26. #define IDS_CUR_BADFILE 4
  27. #define IDS_CUR_BROWSE 5
  28. #define IDS_CUR_FILTER 6
  29. #define IDS_ARROW 7
  30. #define IDS_WAIT 8
  31. #define IDS_APPSTARTING 9
  32. #define IDS_NO 10
  33. #define IDS_IBEAM 11
  34. #define IDS_CROSS 12
  35. #define IDS_SIZENS 13
  36. #define IDS_SIZEWE 14
  37. #define IDS_SIZENWSE 15
  38. #define IDS_SIZENESW 16
  39. #define IDS_SIZEALL 17
  40. #define IDS_REMOVESCHEME 20
  41. #define IDS_DEFAULTSCHEME 21
  42. #define IDS_FIRSTSCHEME 1000
  43. #define IDS_LASTSCHEME 1017
  44. #define CURSORSICON 1
  45. /* Help stuff */
  46. #define IDH_DLG_CURSORS (IDH_DLGFIRST + DLG_CURSORS)
  47. //==========================================================================
  48. // External Declarations
  49. //==========================================================================
  50. extern TCHAR gszNoMem[256];
  51. extern char xszControlHlp[];
  52. //==========================================================================
  53. // Macros
  54. //==========================================================================
  55. //==========================================================================
  56. // Function Prototypes
  57. //==========================================================================
  58. INT_PTR CALLBACK CursorsDlgProc(HWND hwnd, UINT msg, WPARAM wParam,
  59. LPARAM lParam);
  60. LRESULT CALLBACK PreviewWndProc(HWND hwnd, UINT msg, WPARAM wParam,
  61. LPARAM lParam);