Changeset 48607 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Sep 20, 2013 3:47:37 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89180
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostImpl.h
r48578 r48607 78 78 STDMETHOD(COMGETTER(UTCTime))(LONG64 *aUTCTime); 79 79 STDMETHOD(COMGETTER(Acceleration3DAvailable))(BOOL *aSupported); 80 STDMETHOD(COMGETTER(Video CaptureDevices))(ComSafeArrayOut(IHostVideoCaptureDevice*, aVideoCaptureDevices));80 STDMETHOD(COMGETTER(VideoInputDevices))(ComSafeArrayOut(IHostVideoInputDevice*, aVideoInputDevices)); 81 81 82 82 // IHost methods -
trunk/src/VBox/Main/include/HostVideoInputDeviceImpl.h
r48600 r48607 18 18 */ 19 19 20 #ifndef HOSTVIDEO CAPTUREDEVICE_IMPL_H_21 #define HOSTVIDEO CAPTUREDEVICE_IMPL_H_20 #ifndef HOSTVIDEOINPUTDEVICE_IMPL_H_ 21 #define HOSTVIDEOINPUTDEVICE_IMPL_H_ 22 22 23 #include "HostVideo CaptureDeviceWrap.h"23 #include "HostVideoInputDeviceWrap.h" 24 24 25 25 #include <list> 26 26 27 class HostVideo CaptureDevice;27 class HostVideoInputDevice; 28 28 29 typedef std::list<ComObjPtr<HostVideo CaptureDevice> > HostVideoCaptureDeviceList;29 typedef std::list<ComObjPtr<HostVideoInputDevice> > HostVideoInputDeviceList; 30 30 31 class ATL_NO_VTABLE HostVideo CaptureDevice :32 public HostVideo CaptureDeviceWrap31 class ATL_NO_VTABLE HostVideoInputDevice : 32 public HostVideoInputDeviceWrap 33 33 { 34 34 public: 35 35 36 DECLARE_EMPTY_CTOR_DTOR(HostVideo CaptureDevice)36 DECLARE_EMPTY_CTOR_DTOR(HostVideoInputDevice) 37 37 38 38 HRESULT FinalConstruct(); … … 43 43 void uninit(); 44 44 45 static HRESULT queryHostDevices(HostVideo CaptureDeviceList *pList);45 static HRESULT queryHostDevices(HostVideoInputDeviceList *pList); 46 46 47 47 private: 48 48 49 // wrapped IHostVideo CaptureDevice properties49 // wrapped IHostVideoInputDevice properties 50 50 virtual HRESULT getName(com::Utf8Str &aName) { aName = m.name; return S_OK; } 51 51 virtual HRESULT getPath(com::Utf8Str &aPath) { aPath = m.path; return S_OK; } … … 67 67 }; 68 68 69 #endif // HOSTVIDEO CAPTUREDEVICE_IMPL_H_69 #endif // HOSTVIDEOINPUTDEVICE_IMPL_H_ 70 70 71 71 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note:
See TracChangeset
for help on using the changeset viewer.