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.

22 lines
692 B

  1. /*************************************************************************/
  2. /* Copyright (C) 2000 Microsoft Corporation */
  3. /* File: capture.h */
  4. /* Description: Declaration for capture related functions */
  5. /* Author: Phillip Lu */
  6. /*************************************************************************/
  7. #ifndef __CAPTURE_H_
  8. #define __CAPTURE_H_
  9. #define BYTES_PER_PIXEL 3
  10. typedef struct
  11. {
  12. int Width;
  13. int Height;
  14. int Stride;
  15. unsigned char *Scan0;
  16. unsigned char *pBuffer;
  17. } CaptureBitmapData;
  18. #endif // __CAPTURE_H_