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.

42 lines
699 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. viewer.hxx
  5. Abstract:
  6. This header file declares viewer related functions.
  7. Author:
  8. JasonHa
  9. --*/
  10. #ifndef _VIEWER_HXX_
  11. #define _VIEWER_HXX_
  12. #include <tchar.h>
  13. void ViewerInit();
  14. void ViewerExit();
  15. typedef struct {
  16. _TCHAR SurfName[80];
  17. HBITMAP hBitmap;
  18. LONG xOrigin;
  19. LONG yOrigin;
  20. LONG Width;
  21. LONG Height;
  22. WORD BitsPixel;
  23. BITMAPINFOHEADER *pBIH;
  24. } SURF_INFO, *PSURF_INFO;
  25. DWORD CreateViewer(PDEBUG_CLIENT, PSURF_INFO);
  26. #endif _VIEWER_HXX_