Changeset 6710 for trunk/src/quartz/complist.h
- Timestamp:
- Sep 15, 2001, 11:28:23 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/quartz/complist.h
r6578 r6710 13 13 QUARTZ_CompList* QUARTZ_CompList_Alloc( void ); 14 14 void 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 ); 15 void QUARTZ_CompList_Lock( QUARTZ_CompList* pList ); 16 void QUARTZ_CompList_Unlock( QUARTZ_CompList* pList ); 17 18 QUARTZ_CompList* QUARTZ_CompList_Dup( 19 const QUARTZ_CompList* pList, BOOL fDupData ); 20 HRESULT QUARTZ_CompList_AddComp( 21 QUARTZ_CompList* pList, IUnknown* punk, 22 const void* pvData, DWORD dwDataLen ); 17 23 HRESULT QUARTZ_CompList_RemoveComp( QUARTZ_CompList* pList, IUnknown* punk ); 18 24 QUARTZ_CompListItem* QUARTZ_CompList_SearchComp( 19 25 QUARTZ_CompList* pList, IUnknown* punk ); 26 QUARTZ_CompListItem* QUARTZ_CompList_SearchData( 27 QUARTZ_CompList* pList, const void* pvData, DWORD dwDataLen ); 20 28 QUARTZ_CompListItem* QUARTZ_CompList_GetFirst( 21 29 QUARTZ_CompList* pList ); … … 23 31 QUARTZ_CompList* pList, QUARTZ_CompListItem* pPrev ); 24 32 IUnknown* QUARTZ_CompList_GetItemPtr( QUARTZ_CompListItem* pItem ); 33 const void* QUARTZ_CompList_GetDataPtr( QUARTZ_CompListItem* pItem ); 34 DWORD QUARTZ_CompList_GetDataLength( QUARTZ_CompListItem* pItem ); 25 35 26 36
Note:
See TracChangeset
for help on using the changeset viewer.