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.

49 lines
828 B

  1. /**************************************************************************************************
  2. FILENAME: GraphWin.h
  3. COPYRIGHT 2001 Microsoft Corporation and Executive Software International, Inc.
  4. **************************************************************************************************/
  5. #define GRAPHICSWINDOW_CLASS TEXT("DfrgUI Graphics Window")
  6. #define MIN_SCROLL_HEIGHT 200
  7. BOOL
  8. InitializeGraphicsWindow(
  9. IN HWND hwnd,
  10. IN HINSTANCE hInst
  11. );
  12. LRESULT CALLBACK
  13. GraphicsWndProc(
  14. IN HWND hWnd,
  15. IN UINT uMsg,
  16. IN UINT wParam,
  17. IN LONG lParam
  18. );
  19. BOOL
  20. SizeGraphicsWindow(
  21. void
  22. );
  23. BOOL
  24. PaintGraphicsWindowFunction(
  25. );
  26. BOOL
  27. PaintGraphicsWindow(
  28. IN RECT rect,
  29. IN BOOL bPartialRedraw,
  30. HDC hdc
  31. );
  32. BOOL
  33. DestroyGraphicsWindow(
  34. );
  35. void
  36. SetButtonState(
  37. void
  38. );