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.

41 lines
919 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 1998
  4. *
  5. * TITLE: TCamProp.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * DATE: 16 May, 1999
  10. *
  11. * DESCRIPTION:
  12. * Definitions and declarations for test camera's private properties.
  13. *
  14. *******************************************************************************/
  15. #ifndef __TCAMPROP_H__
  16. #define __TCAMPROP_H__
  17. #include <guiddef.h>
  18. //
  19. // Path where test camera builds its item tree, BSTR & RW
  20. //
  21. #define WIA_DPP_TCAM_ROOT_PATH WIA_PRIVATE_DEVPROP
  22. #define WIA_DPP_TCAM_ROOT_PATH_STR L"Test Camera Root Path"
  23. //
  24. // Private event after the Root Path is changed
  25. //
  26. const GUID WIA_EVENT_NAME_CHANGE =
  27. { /* 88f80f75-af08-11d2-a094-00c04f72dc3c */
  28. 0x88f80f75,
  29. 0xaf08,
  30. 0x11d2,
  31. {0xa0, 0x94, 0x00, 0xc0, 0x4f, 0x72, 0xdc, 0x3c}
  32. };
  33. #endif