Changeset a9eeb55307274d9510a55d29e1613ede8895d9bf
- Timestamp:
- 28/01/08 17:28:29
(10 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1201537709 +0000
- git-parent:
[38d7da29c086a7a7a1e5eb4d49be0be7e744493a]
- git-author:
- Rafaël Carré <funman@videolan.org> 1201537709 +0000
- Message:
modules CacheFind?(): remove unused parameter
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
ra9eeb55 |
|
| 701 | 701 | * CacheFind: finds the cache entry corresponding to a file |
|---|
| 702 | 702 | *****************************************************************************/ |
|---|
| 703 | | module_cache_t *CacheFind( vlc_object_t *p_this, const char *psz_file, |
|---|
| | 703 | module_cache_t *CacheFind( const char *psz_file, |
|---|
| 704 | 704 | int64_t i_time, int64_t i_size ) |
|---|
| 705 | 705 | { |
|---|
| r1b09c02 |
ra9eeb55 |
|
| 1085 | 1085 | */ |
|---|
| 1086 | 1086 | p_cache_entry = |
|---|
| 1087 | | CacheFind( p_this, psz_file, i_file_time, i_file_size ); |
|---|
| | 1087 | CacheFind( psz_file, i_file_time, i_file_size ); |
|---|
| 1088 | 1088 | |
|---|
| 1089 | 1089 | if( !p_cache_entry ) |
|---|
| r6181746 |
ra9eeb55 |
|
| 164 | 164 | void CacheLoad (vlc_object_t * ); |
|---|
| 165 | 165 | void CacheSave (vlc_object_t * ); |
|---|
| 166 | | module_cache_t * CacheFind (vlc_object_t *, const char *, int64_t, int64_t); |
|---|
| | 166 | module_cache_t * CacheFind (const char *, int64_t, int64_t); |
|---|
| 167 | 167 | |
|---|
| 168 | 168 | #endif /* !__LIBVLC_MODULES_H */ |
|---|