Changeset 0f4951b89012aebd71d06f46f127f793912b4a72
- Timestamp:
- 25/03/08 23:40:59
(7 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1206484859 +0100
- git-parent:
[3adef75281ec5d358be596d94740304f8b50d62d]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1206483878 +0100
- Message:
control: Remove tag_query_*.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r55f3a9f |
r0f4951b |
|
| 167 | 167 | control/mediacontrol_util.c |
|---|
| 168 | 168 | control/mediacontrol_audio_video.c |
|---|
| 169 | | control/media_discoverer.c |
|---|
| 170 | | control/tag_query.c ) |
|---|
| | 169 | control/media_discoverer.c ) |
|---|
| 171 | 170 | |
|---|
| 172 | 171 | add_library(libvlc-control SHARED ${SOURCES_libvlc_control}) |
|---|
| r3adef75 |
r0f4951b |
|
| 545 | 545 | |
|---|
| 546 | 546 | /***************************************************************************** |
|---|
| 547 | | * Tag Query |
|---|
| 548 | | *****************************************************************************/ |
|---|
| 549 | | /** defgroup libvlc_tag_query Tag Query |
|---|
| 550 | | * \ingroup libvlc |
|---|
| 551 | | * LibVLC Tag query |
|---|
| 552 | | * @{ |
|---|
| 553 | | */ |
|---|
| 554 | | VLC_PUBLIC_API libvlc_tag_query_t * |
|---|
| 555 | | libvlc_tag_query_new( libvlc_instance_t *, libvlc_exception_t * ); |
|---|
| 556 | | |
|---|
| 557 | | VLC_PUBLIC_API void |
|---|
| 558 | | libvlc_tag_query_release( libvlc_tag_query_t * ); |
|---|
| 559 | | |
|---|
| 560 | | VLC_PUBLIC_API void |
|---|
| 561 | | libvlc_tag_query_retain( libvlc_tag_query_t * ); |
|---|
| 562 | | |
|---|
| 563 | | VLC_PUBLIC_API void |
|---|
| 564 | | libvlc_tag_query_set_match_tag_and_key( libvlc_tag_query_t * p_q, |
|---|
| 565 | | libvlc_tag_t tag, |
|---|
| 566 | | char * psz_tag_key, |
|---|
| 567 | | libvlc_exception_t * ); |
|---|
| 568 | | |
|---|
| 569 | | VLC_PUBLIC_API int |
|---|
| 570 | | libvlc_tag_query_match( libvlc_tag_query_t *, libvlc_media_descriptor_t *, |
|---|
| 571 | | libvlc_exception_t * ); |
|---|
| 572 | | |
|---|
| 573 | | /** @} */ |
|---|
| 574 | | |
|---|
| 575 | | /***************************************************************************** |
|---|
| 576 | 547 | * Media List |
|---|
| 577 | 548 | *****************************************************************************/ |
|---|
| re635537 |
r0f4951b |
|
| 375 | 375 | control/mediacontrol_util.c \ |
|---|
| 376 | 376 | control/mediacontrol_audio_video.c \ |
|---|
| 377 | | control/media_discoverer.c \ |
|---|
| 378 | | control/tag_query.c |
|---|
| | 377 | control/media_discoverer.c |
|---|
| 379 | 378 | |
|---|
| 380 | 379 | ############################################################################### |
|---|