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.

39 lines
1.0 KiB

  1. /*****************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 2000
  4. *
  5. * TITLE: WiaVideoTest.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * DATE: 2000/11/14
  10. *
  11. * DESCRIPTION: Creates the dialog used by the app
  12. *
  13. *****************************************************************************/
  14. #ifndef _WIAVIDEOTEST_H_
  15. #define _WIAVIDEOTEST_H_
  16. ///////////////////////////////
  17. // APP_GVAR
  18. //
  19. // Global variables used across
  20. // the application.
  21. //
  22. // If INCL_APP_GVAR_OWNERSHIP is NOT defined
  23. // by the CPP file including this header, then
  24. // this struct will be "extern" to them. WiaVideoTest.cpp
  25. // defines INCL_APP_GVAR_OWNERSHIP, in which case it will not
  26. // be extern'd to it.
  27. //
  28. #ifndef INCL_APP_GVAR_OWNERSHIP
  29. extern
  30. #endif
  31. struct
  32. {
  33. HINSTANCE hInstance;
  34. HWND hwndMainDlg;
  35. BOOL bWiaDeviceListMode; // TRUE if WIA Device List radio button is selected, FALSE otherwise
  36. } APP_GVAR;
  37. #endif // _WIAVIDEOTEST_H_