Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonasno <jonasno@users.sourceforge.net>2010-02-19 03:19:24 +0300
committerjonasno <jonasno@users.sourceforge.net>2010-02-19 03:19:24 +0300
commit321a14e5c96f9edae64bba9f97002431d155ab9f (patch)
tree588909a26ae207fc76c909c2cdf658bf064dab41 /src/filters/reader
parentca7ad0034eb7760572223a7e120d1be2e35e34d8 (diff)
const correction
Patch by tetsuo55 git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1677 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/reader')
-rw-r--r--src/filters/reader/asyncreader/asyncio.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/filters/reader/asyncreader/asyncio.h b/src/filters/reader/asyncreader/asyncio.h
index af52d48c3..0f463bf7a 100644
--- a/src/filters/reader/asyncreader/asyncio.h
+++ b/src/filters/reader/asyncreader/asyncio.h
@@ -71,32 +71,32 @@ public:
HRESULT Complete();
// cancels the i/o. blocks until i/o is no longer pending
- HRESULT Cancel()
+ HRESULT Cancel() const
{
return S_OK;
};
// accessor functions
- LPVOID GetContext()
+ LPVOID GetContext() /*const*/
{
return m_pContext;
};
- DWORD GetUser()
+ DWORD GetUser() const
{
return m_dwUser;
};
- HRESULT GetHResult() {
+ HRESULT GetHResult() const {
return m_hr;
};
// we set m_lLength to the actual length
- LONG GetActualLength() {
+ LONG GetActualLength() const {
return m_lLength;
};
- LONGLONG GetStart() {
+ LONGLONG GetStart() const {
return m_llPos;
};
};