~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/dlls/ole32/moniker.h

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * Monikers
  3  *
  4  * Copyright 1998 Marcus Meissner
  5  * Copyright 1999 Noomen Hamza
  6  * Copyright 2005 Robert Shearman (for CodeWeavers)
  7  *
  8  * This library is free software; you can redistribute it and/or
  9  * modify it under the terms of the GNU Lesser General Public
 10  * License as published by the Free Software Foundation; either
 11  * version 2.1 of the License, or (at your option) any later version.
 12  *
 13  * This library is distributed in the hope that it will be useful,
 14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 16  * Lesser General Public License for more details.
 17  *
 18  * You should have received a copy of the GNU Lesser General Public
 19  * License along with this library; if not, write to the Free Software
 20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 21  */
 22 
 23 #ifndef __WINE_MONIKER_H__
 24 #define __WINE_MONIKER_H__
 25 
 26 DEFINE_OLEGUID( CLSID_FileMoniker,      0x303, 0, 0 );
 27 DEFINE_OLEGUID( CLSID_ItemMoniker,      0x304, 0, 0 );
 28 DEFINE_OLEGUID( CLSID_AntiMoniker,      0x305, 0, 0 );
 29 DEFINE_OLEGUID( CLSID_CompositeMoniker, 0x309, 0, 0 );
 30 DEFINE_OLEGUID( CLSID_ClassMoniker,     0x31a, 0, 0 );
 31 DEFINE_OLEGUID( CLSID_PointerMoniker,   0x306, 0, 0 );
 32 
 33 HRESULT FileMonikerCF_Create(REFIID riid, LPVOID *ppv);
 34 HRESULT ItemMonikerCF_Create(REFIID riid, LPVOID *ppv);
 35 HRESULT AntiMonikerCF_Create(REFIID riid, LPVOID *ppv);
 36 HRESULT CompositeMonikerCF_Create(REFIID riid, LPVOID *ppv);
 37 HRESULT ClassMonikerCF_Create(REFIID riid, LPVOID *ppv);
 38 HRESULT PointerMonikerCF_Create(REFIID riid, LPVOID *ppv);
 39 
 40 /* This function decomposes a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directory" or "FileName") of the path */
 41 int FileMonikerImpl_DecomposePath(LPCOLESTR str, LPOLESTR** stringTable);
 42 
 43 HRESULT FileMoniker_CreateFromDisplayName(LPBC pbc, LPCOLESTR szDisplayName,
 44                                           LPDWORD pchEaten, LPMONIKER *ppmk);
 45 HRESULT ClassMoniker_CreateFromDisplayName(LPBC pbc, LPCOLESTR szDisplayName,
 46                                            LPDWORD pchEaten, LPMONIKER *ppmk);
 47 
 48 HRESULT MonikerMarshal_Create(IMoniker *inner, IUnknown **outer);
 49 
 50 
 51 #endif /* __WINE_MONIKER_H__ */
 52 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.