summaryrefslogtreecommitdiff
path: root/src/VBox/Main/include/ParallelPortImpl.h
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2008-12-05 17:20:00 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2008-12-05 17:20:00 +0000
commit7f211ba6b7b552657d65bba12ff1bc0611c8670b (patch)
tree24c6ddef45487a56eb1882bbcbc72053a61589a8 /src/VBox/Main/include/ParallelPortImpl.h
parent174e13a654a5c7f5d8d45058bf0a93511a158f6d (diff)
downloadVirtualBox-svn-7f211ba6b7b552657d65bba12ff1bc0611c8670b.tar.gz
Main: Cleaned up the long standing const BSTR = const (OLECHAR *) on WIn32 vs (const PRunichar) * on XPCOM clash. Cleaned up BSTR/GUID macros (IN_BSTR replaces INPTR BSTR, IN_GUID replaces INPTR GUIDPARAM, OUT_GUID replaces GUIDPARAMOUT).
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@15051 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Main/include/ParallelPortImpl.h')
-rw-r--r--src/VBox/Main/include/ParallelPortImpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/Main/include/ParallelPortImpl.h b/src/VBox/Main/include/ParallelPortImpl.h
index f5e21a9a1ba..f87e35d220b 100644
--- a/src/VBox/Main/include/ParallelPortImpl.h
+++ b/src/VBox/Main/include/ParallelPortImpl.h
@@ -94,7 +94,7 @@ public:
STDMETHOD(COMGETTER(IOBase)) (ULONG *aIOBase);
STDMETHOD(COMSETTER(IOBase)) (ULONG aIOBase);
STDMETHOD(COMGETTER(Path)) (BSTR *aPath);
- STDMETHOD(COMSETTER(Path)) (INPTR BSTR aPath);
+ STDMETHOD(COMSETTER(Path)) (IN_BSTR aPath);
// public methods only for internal purposes
@@ -115,7 +115,7 @@ public:
private:
- HRESULT checkSetPath (const BSTR aPath);
+ HRESULT checkSetPath (CBSTR aPath);
const ComObjPtr <Machine, ComWeakRef> mParent;
const ComObjPtr <ParallelPort> mPeer;