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.

51 lines
1.0 KiB

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 1998
  4. *
  5. * TITLE: VCamProp.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: RickTu
  10. *
  11. * DATE: 29 Sept, 1999
  12. *
  13. * DESCRIPTION:
  14. * Definitions and declarations for DS Camera's private properties.
  15. *
  16. *******************************************************************************/
  17. #ifndef __VCAMPROP_H__
  18. #define __VCAMPROP_H__
  19. #include <guiddef.h>
  20. //
  21. // Private commands enabling WIA Video to respond to
  22. // TAKE_PICTURE commands sent to Video Driver.
  23. //
  24. const GUID WIA_CMD_ENABLE_TAKE_PICTURE =
  25. { /* 9bc87d4d-e949-44ce-866c-c6921302032d */
  26. 0x9bc87d4d,
  27. 0xe949,
  28. 0x44ce,
  29. {0x86, 0x6c, 0xc6, 0x92, 0x13, 0x02, 0x03, 0x2d}
  30. };
  31. //
  32. // Private command to tell the driver to create the DirectShow graph
  33. //
  34. const GUID WIA_CMD_DISABLE_TAKE_PICTURE =
  35. { /* 8127f490-1beb-4271-9f04-9c8e983f51fd */
  36. 0x8127f490,
  37. 0x1beb,
  38. 0x4271,
  39. { 0x9f, 0x04, 0x9c, 0x8e, 0x98, 0x3f, 0x51, 0xfd}
  40. };
  41. #endif