- Timestamp:
- Aug 16, 2012 11:13:41 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80100
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r42838 r42843 1705 1705 1706 1706 1707 STDMETHODIMP Machine::COMGETTER(VideoCaptureWidth)( uint32_t *u32HorzRes)1707 STDMETHODIMP Machine::COMGETTER(VideoCaptureWidth)(ULONG *ulHorzRes) 1708 1708 { 1709 1709 AutoCaller autoCaller(this); … … 1711 1711 1712 1712 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 1713 *u 32HorzRes = mHWData->mVideoCaptureWidth;1714 return S_OK; 1715 } 1716 1717 STDMETHODIMP Machine::COMSETTER(VideoCaptureWidth)( uint32_t u32HorzRes)1713 *ulHorzRes = mHWData->mVideoCaptureWidth; 1714 return S_OK; 1715 } 1716 1717 STDMETHODIMP Machine::COMSETTER(VideoCaptureWidth)(ULONG ulHorzRes) 1718 1718 { 1719 1719 AutoCaller autoCaller(this); … … 1725 1725 1726 1726 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 1727 mHWData->mVideoCaptureWidth = u 32HorzRes;1728 return S_OK; 1729 } 1730 1731 STDMETHODIMP Machine::COMGETTER(VideoCaptureHeight)( uint32_t *u32VertRes)1727 mHWData->mVideoCaptureWidth = ulHorzRes; 1728 return S_OK; 1729 } 1730 1731 STDMETHODIMP Machine::COMGETTER(VideoCaptureHeight)(ULONG *ulVertRes) 1732 1732 { 1733 1733 AutoCaller autoCaller(this); … … 1735 1735 1736 1736 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 1737 *u 32VertRes = mHWData->mVideoCaptureHeight;1738 return S_OK; 1739 } 1740 1741 STDMETHODIMP Machine::COMSETTER(VideoCaptureHeight)( uint32_t u32VertRes)1737 *ulVertRes = mHWData->mVideoCaptureHeight; 1738 return S_OK; 1739 } 1740 1741 STDMETHODIMP Machine::COMSETTER(VideoCaptureHeight)(ULONG ulVertRes) 1742 1742 { 1743 1743 AutoCaller autoCaller(this); … … 1745 1745 1746 1746 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 1747 mHWData->mVideoCaptureHeight = u 32VertRes;1747 mHWData->mVideoCaptureHeight = ulVertRes; 1748 1748 return S_OK; 1749 1749 }
Note:
See TracChangeset
for help on using the changeset viewer.