Changeset b8610e40d930eac206289ca29ae096b66f0f1942
- Timestamp:
- 29/03/08 10:27:56
(6 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1206782876 +0200
- git-parent:
[9fc1c6d158fdc6bd7691f79396a7bd5e22805705]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1206782876 +0200
- Message:
Fix warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r88226a8 |
rb8610e4 |
|
| 88 | 88 | * @return the created object, or NULL. |
|---|
| 89 | 89 | */ |
|---|
| 90 | | extern vlc_object_t * |
|---|
| | 90 | extern void * |
|---|
| 91 | 91 | vlc_custom_create (vlc_object_t *p_this, size_t i_size, int i_type, |
|---|
| 92 | 92 | const char *psz_type); |
|---|
| r9fc1c6d |
rb8610e4 |
|
| 105 | 105 | static vlc_object_internals_t global_internals; |
|---|
| 106 | 106 | |
|---|
| 107 | | vlc_object_t *vlc_custom_create( vlc_object_t *p_this, size_t i_size, |
|---|
| 108 | | int i_type, const char *psz_type ) |
|---|
| | 107 | void *vlc_custom_create( vlc_object_t *p_this, size_t i_size, |
|---|
| | 108 | int i_type, const char *psz_type ) |
|---|
| 109 | 109 | { |
|---|
| 110 | 110 | vlc_object_t *p_new; |
|---|
| r182f9a3 |
rb8610e4 |
|
| 36 | 36 | #include <vlc_filter.h> |
|---|
| 37 | 37 | #include <vlc_osd.h> |
|---|
| | 38 | #include "../libvlc.h" |
|---|
| 38 | 39 | |
|---|
| 39 | 40 | /***************************************************************************** |
|---|