Changeset 312324cd44cf10c2b090e91eefe8242a62cbeb1b
- Timestamp:
- 15/06/08 23:07:33
(4 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213564053 +0200
- git-parent:
[7e7f3bd7530de33ee945ce6d893c85431369c477]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213564053 +0200
- Message:
update: Use const char * for psz_destdir.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfbb8255 |
r312324c |
|
| 58 | 58 | VLC_EXPORT( void, update_Check, ( update_t *, void (*callback)( void*, bool ), void * ) ); |
|---|
| 59 | 59 | VLC_EXPORT( bool, update_NeedUpgrade, ( update_t * ) ); |
|---|
| 60 | | VLC_EXPORT( void, update_Download, ( update_t *, char* ) ); |
|---|
| | 60 | VLC_EXPORT( void, update_Download, ( update_t *, const char* ) ); |
|---|
| 61 | 61 | VLC_EXPORT( update_release_t*, update_GetRelease, ( update_t * ) ); |
|---|
| 62 | 62 | |
|---|
| r15e6f2c |
r312324c |
|
| 1448 | 1448 | * \return nothing |
|---|
| 1449 | 1449 | */ |
|---|
| 1450 | | void update_Download( update_t *p_update, char *psz_destdir ) |
|---|
| | 1450 | void update_Download( update_t *p_update, const char *psz_destdir ) |
|---|
| 1451 | 1451 | { |
|---|
| 1452 | 1452 | assert( p_update ); |
|---|
| … | … | |
| 1691 | 1691 | } |
|---|
| 1692 | 1692 | |
|---|
| 1693 | | void update_Download( update_t *p_update, char *psz_destdir ) |
|---|
| | 1693 | void update_Download( update_t *p_update, const char *psz_destdir ) |
|---|
| 1694 | 1694 | { |
|---|
| 1695 | 1695 | (void)p_update; (void)psz_destdir; |
|---|