Changeset 28944cf048ddb32c971e7d458349b7d85b934587
- Timestamp:
- 05/08/08 21:54:46
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210276486 +0300
- git-parent:
[9a719ad0af1938ae8978e4e746dc6089eeaab8c6]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210276486 +0300
- Message:
capabilities are strings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6433e0e |
r28944cf |
|
| 141 | 141 | |
|---|
| 142 | 142 | #define set_capability( cap, score ) \ |
|---|
| 143 | | if (vlc_module_set (p_submodule, VLC_MODULE_CAPABILITY, (int)(cap)) \ |
|---|
| | 143 | if (vlc_module_set (p_submodule, VLC_MODULE_CAPABILITY, \ |
|---|
| | 144 | (const char *)(cap)) \ |
|---|
| 144 | 145 | || vlc_module_set (p_submodule, VLC_MODULE_SCORE, (int)(score))) \ |
|---|
| 145 | 146 | goto error |
|---|