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:
authorUnderground78 <underground78@users.sourceforge.net>2013-05-31 00:28:29 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-06-19 00:18:19 +0400
commitc5fb9c73b7f622300cf5d36346fdf8872d79cf2b (patch)
treefa7ebb3e907311ea8cf0a856ad781bcd45367dc7 /src/DSUtil/DSMPropertyBag.h
parent0d31965a98684ffe01c42a15a40a30c8388f7d3d (diff)
Replace remaining NULL by nullptr when possible.
Diffstat (limited to 'src/DSUtil/DSMPropertyBag.h')
-rw-r--r--src/DSUtil/DSMPropertyBag.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DSUtil/DSMPropertyBag.h b/src/DSUtil/DSMPropertyBag.h
index 678e0c81b..f11693836 100644
--- a/src/DSUtil/DSMPropertyBag.h
+++ b/src/DSUtil/DSMPropertyBag.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -114,7 +114,7 @@ public:
STDMETHODIMP_(DWORD) ResGetCount();
STDMETHODIMP ResGet(DWORD iIndex, BSTR* ppName, BSTR* ppDesc, BSTR* ppMime,
- BYTE** ppData, DWORD* pDataLen, DWORD_PTR* pTag = NULL);
+ BYTE** ppData, DWORD* pDataLen, DWORD_PTR* pTag = nullptr);
STDMETHODIMP ResSet(DWORD iIndex, LPCWSTR pName, LPCWSTR pDesc, LPCWSTR pMime,
BYTE* pData, DWORD len, DWORD_PTR tag = 0);
STDMETHODIMP ResAppend(LPCWSTR pName, LPCWSTR pDesc, LPCWSTR pMime,
@@ -166,12 +166,12 @@ public:
// IDSMChapterBag
STDMETHODIMP_(DWORD) ChapGetCount();
- STDMETHODIMP ChapGet(DWORD iIndex, REFERENCE_TIME* prt, BSTR* ppName = NULL);
+ STDMETHODIMP ChapGet(DWORD iIndex, REFERENCE_TIME* prt, BSTR* ppName = nullptr);
STDMETHODIMP ChapSet(DWORD iIndex, REFERENCE_TIME rt, LPCWSTR pName);
STDMETHODIMP ChapAppend(REFERENCE_TIME rt, LPCWSTR pName);
STDMETHODIMP ChapRemoveAt(DWORD iIndex);
STDMETHODIMP ChapRemoveAll();
- STDMETHODIMP_(long) ChapLookup(REFERENCE_TIME* prt, BSTR* ppName = NULL);
+ STDMETHODIMP_(long) ChapLookup(REFERENCE_TIME* prt, BSTR* ppName = nullptr);
STDMETHODIMP ChapSort();
};