X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=activex%2Fpersiststorage.cpp;h=5bac3012aca1bd5cca7e078fc3e969f02d1c93d5;hb=c8555cc65a7a3ab48e1e66766ec761e1037650ee;hp=7c7eb8222b93a82a46c3fbd60de79d713c2f9824;hpb=d2310f2a226acf7061a812193c8cd8aa15eff46b;p=vlc diff --git a/activex/persiststorage.cpp b/activex/persiststorage.cpp index 7c7eb8222b..5bac3012ac 100644 --- a/activex/persiststorage.cpp +++ b/activex/persiststorage.cpp @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #include "plugin.h" @@ -40,12 +40,12 @@ STDMETHODIMP VLCPersistStorage::IsDirty(void) return _p_instance->isDirty() ? S_OK : S_FALSE; }; -STDMETHODIMP VLCPersistStorage::InitNew(IStorage *pStg) +STDMETHODIMP VLCPersistStorage::InitNew(LPSTORAGE pStg) { return _p_instance->onInit(); }; -STDMETHODIMP VLCPersistStorage::Load(IStorage *pStg) +STDMETHODIMP VLCPersistStorage::Load(LPSTORAGE pStg) { if( NULL == pStg ) return E_INVALIDARG; @@ -69,7 +69,7 @@ STDMETHODIMP VLCPersistStorage::Load(IStorage *pStg) return result; }; -STDMETHODIMP VLCPersistStorage::Save(IStorage *pStg, BOOL fSameAsLoad) +STDMETHODIMP VLCPersistStorage::Save(LPSTORAGE pStg, BOOL fSameAsLoad) { if( NULL == pStg ) return E_INVALIDARG;