Changeset 39d0e3e076334dc371a62020fba4d30919148548
- Timestamp:
- 12/09/06 21:00:51
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1158087651 +0000
- git-parent:
[cf4fe30a158f14e00961b7c65979b7b9eae1a4b9]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1158087651 +0000
- Message:
control/
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra5df65a |
r39d0e3e |
|
| 26 | 26 | #include "http.h" |
|---|
| 27 | 27 | #include "macros.h" |
|---|
| | 28 | #include "vlc_url.h" |
|---|
| 28 | 29 | |
|---|
| 29 | 30 | int E_(MacroParse)( macro_t *m, char *psz_src ) |
|---|
| r9d17940 |
r39d0e3e |
|
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #include <vlc/vlc.h> |
|---|
| | 27 | #include <stdio.h> |
|---|
| 26 | 28 | #include "http.h" |
|---|
| 27 | 29 | #include "vlc_strings.h" |
|---|
| rc59d494 |
r39d0e3e |
|
| 26 | 26 | * Preamble |
|---|
| 27 | 27 | *****************************************************************************/ |
|---|
| | 28 | #include <vlc/vlc.h> |
|---|
| | 29 | |
|---|
| 28 | 30 | #include <stdlib.h> /* malloc(), free() */ |
|---|
| 29 | 31 | #include <string.h> |
|---|
| … | … | |
| 34 | 36 | #include <signal.h> |
|---|
| 35 | 37 | |
|---|
| 36 | | #include <vlc/vlc.h> |
|---|
| 37 | 38 | #include <vlc/intf.h> |
|---|
| 38 | 39 | #include <vlc/aout.h> |
|---|
| … | … | |
| 1979 | 1980 | vlc_value_t val, text; |
|---|
| 1980 | 1981 | int i; |
|---|
| 1981 | | float f_value; |
|---|
| | 1982 | float f_value = 0.; |
|---|
| 1982 | 1983 | char *psz_value = NULL; |
|---|
| 1983 | 1984 | |
|---|