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.

45 lines
1.0 KiB

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 1998
  4. *
  5. * TITLE: WIASELD.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: ShaunIv
  10. *
  11. * DATE: 2/27/1999
  12. *
  13. * DESCRIPTION: Device selection dialog
  14. *
  15. *******************************************************************************/
  16. #ifndef __WIASELD_H_INCLUDED
  17. #define __WIASELD_H_INCLUDED
  18. #if defined(__cplusplus)
  19. extern "C" {
  20. #endif
  21. #include "wia.h"
  22. typedef struct _SELECTDEVICEDLG
  23. {
  24. DWORD cbSize;
  25. HWND hwndParent;
  26. LPWSTR pwszInitialDeviceId;
  27. IWiaItem **ppWiaItemRoot;
  28. LONG nFlags;
  29. LONG nDeviceType;
  30. BSTR *pbstrDeviceID;
  31. } SELECTDEVICEDLG, *LPSELECTDEVICEDLG, *PSELECTDEVICEDLG;
  32. HRESULT WINAPI SelectDeviceDlg( PSELECTDEVICEDLG pSelectDeviceDlg );
  33. typedef HRESULT (WINAPI *SELECTDEVICEDLGFUNCTION)( PSELECTDEVICEDLG );
  34. #if defined(__cplusplus)
  35. };
  36. #endif
  37. #endif // __WIASELD_H_INCLUDED