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.

84 lines
2.6 KiB

  1. /****************************** Module Header ******************************\
  2. * Module Name: wndstuff.h
  3. *
  4. * Created: 23 December 1999
  5. * Author: Adrian Secchia [asecchia]
  6. *
  7. * Copyright (c) 1999 Microsoft Corporation
  8. \***************************************************************************/
  9. #pragma once
  10. #include <windows.h>
  11. #include <winuser.h>
  12. #include <commdlg.h>
  13. #define DONTUSE(x) (x)
  14. #define IDM_TEST 40000
  15. // tests
  16. #define IDM_ALL 40100
  17. #define IDM_SIMPLE 40101
  18. #define IDM_DRAWICM 40102
  19. #define IDM_DRAWIMAGE2 40103
  20. #define IDM_STRETCHROTATION 40104
  21. #define IDM_CROPROTATION 40105
  22. #define IDM_COPYCROP 40106
  23. #define IDM_OUTCROP 40107
  24. #define IDM_OUTCROPR 40108
  25. #define IDM_STRETCHB 40109
  26. #define IDM_STRETCHS 40110
  27. #define IDM_SHRINKROTATION 40111
  28. #define IDM_PIXELCENTER 40112
  29. #define IDM_DRAWPALETTE 40113
  30. #define IDM_CACHEDBITMAP 40114
  31. #define IDM_CROPWT 40115
  32. #define IDM_HFLIP 40116
  33. #define IDM_VFLIP 40117
  34. #define IDM_SPECIALROTATE 40118
  35. // Resample mode
  36. #define IDM_BILINEAR 40200
  37. #define IDM_BICUBIC 40201
  38. #define IDM_NEARESTNEIGHBOR 40202
  39. #define IDM_HIGHBILINEAR 40203
  40. #define IDM_HIGHBICUBIC 40204
  41. #define IDM_PIXELMODE 40205
  42. #define IDM_WRAPMODETILE 40206
  43. #define IDM_WRAPMODEFLIPX 40207
  44. #define IDM_WRAPMODEFLIPY 40208
  45. #define IDM_WRAPMODEFLIPXY 40209
  46. #define IDM_WRAPMODECLAMP0 40210
  47. #define IDM_WRAPMODECLAMPFF 40211
  48. #define IDM_QUIT 40300
  49. #define IDM_ROT0 40400
  50. #define IDM_ROT10 40401
  51. #define IDM_ROT30 40402
  52. #define IDM_ROT45 40403
  53. #define IDM_ROT60 40404
  54. #define IDM_ROT90 40405
  55. #define IDM_ICM 40500
  56. #define IDM_NOICM 40501
  57. #define IDM_ICM_BACK 40502
  58. #define IDM_ICM_NOBACK 40503
  59. #define IDM_OPENFILE 40600
  60. ULONG _cdecl
  61. DbgPrint(
  62. CHAR* format,
  63. ...
  64. );
  65. VOID DoTest(HWND);