Ignore:
Timestamp:
Sep 15, 2001, 11:28:23 AM (24 years ago)
Author:
sandervl
Message:

wine update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/quartz/complist.h

    r6578 r6710  
    1313QUARTZ_CompList* QUARTZ_CompList_Alloc( void );
    1414void QUARTZ_CompList_Free( QUARTZ_CompList* pList );
    15 QUARTZ_CompList* QUARTZ_CompList_Dup( QUARTZ_CompList* pList );
    16 HRESULT QUARTZ_CompList_AddComp( QUARTZ_CompList* pList, IUnknown* punk );
     15void QUARTZ_CompList_Lock( QUARTZ_CompList* pList );
     16void QUARTZ_CompList_Unlock( QUARTZ_CompList* pList );
     17
     18QUARTZ_CompList* QUARTZ_CompList_Dup(
     19        const QUARTZ_CompList* pList, BOOL fDupData );
     20HRESULT QUARTZ_CompList_AddComp(
     21        QUARTZ_CompList* pList, IUnknown* punk,
     22        const void* pvData, DWORD dwDataLen );
    1723HRESULT QUARTZ_CompList_RemoveComp( QUARTZ_CompList* pList, IUnknown* punk );
    1824QUARTZ_CompListItem* QUARTZ_CompList_SearchComp(
    1925        QUARTZ_CompList* pList, IUnknown* punk );
     26QUARTZ_CompListItem* QUARTZ_CompList_SearchData(
     27        QUARTZ_CompList* pList, const void* pvData, DWORD dwDataLen );
    2028QUARTZ_CompListItem* QUARTZ_CompList_GetFirst(
    2129        QUARTZ_CompList* pList );
     
    2331        QUARTZ_CompList* pList, QUARTZ_CompListItem* pPrev );
    2432IUnknown* QUARTZ_CompList_GetItemPtr( QUARTZ_CompListItem* pItem );
     33const void* QUARTZ_CompList_GetDataPtr( QUARTZ_CompListItem* pItem );
     34DWORD QUARTZ_CompList_GetDataLength( QUARTZ_CompListItem* pItem );
    2535
    2636
Note: See TracChangeset for help on using the changeset viewer.