diff options
| author | Ard Biesheuvel <abies@php.net> | 2003-09-02 13:34:23 +0000 |
|---|---|---|
| committer | Ard Biesheuvel <abies@php.net> | 2003-09-02 13:34:23 +0000 |
| commit | 3d6426ee14a38bed1ebbccaf75d8eccfd7d08060 (patch) | |
| tree | 41b93ebc793dff295dfa21a617098b4d7221540d /main | |
| parent | 469b746b4d4c678a7fc511dd74160a322b16868a (diff) | |
| download | php-git-3d6426ee14a38bed1ebbccaf75d8eccfd7d08060.tar.gz | |
Fix use of EXTERN_C macros
Diffstat (limited to 'main')
| -rw-r--r-- | main/SAPI.h | 16 | ||||
| -rw-r--r-- | main/php_main.h | 4 | ||||
| -rw-r--r-- | main/php_variables.h | 4 |
3 files changed, 12 insertions, 12 deletions
diff --git a/main/SAPI.h b/main/SAPI.h index a2e261e526..9e34324dc6 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -61,9 +61,9 @@ typedef struct { typedef struct _sapi_post_entry sapi_post_entry; typedef struct _sapi_module_struct sapi_module_struct; -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() extern SAPI_API sapi_module_struct sapi_module; /* true global */ -END_EXTERN_C(); +END_EXTERN_C() /* Some values in this structure needs to be filled in before * calling sapi_activate(). We WILL change the `char *' entries, @@ -125,7 +125,7 @@ typedef struct _sapi_globals_struct { } sapi_globals_struct; -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() #ifdef ZTS # define SG(v) TSRMG(sapi_globals_id, sapi_globals_struct *, v) SAPI_API extern int sapi_globals_id; @@ -139,7 +139,7 @@ SAPI_API void sapi_shutdown(void); SAPI_API void sapi_activate(TSRMLS_D); SAPI_API void sapi_deactivate(TSRMLS_D); SAPI_API void sapi_initialize_empty_request(TSRMLS_D); -END_EXTERN_C(); +END_EXTERN_C() /* * This is the preferred and maintained API for @@ -164,7 +164,7 @@ typedef enum { /* Parameter: */ SAPI_HEADER_SET_STATUS /* int */ } sapi_header_op_enum; -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() SAPI_API int sapi_header_op(sapi_header_op_enum op, void *arg TSRMLS_DC); /* Deprecated functions. Use sapi_header_op instead. */ @@ -197,7 +197,7 @@ SAPI_API int sapi_force_http_10(TSRMLS_D); SAPI_API int sapi_get_target_uid(uid_t * TSRMLS_DC); SAPI_API int sapi_get_target_gid(gid_t * TSRMLS_DC); -END_EXTERN_C(); +END_EXTERN_C() struct _sapi_module_struct { char *name; @@ -278,12 +278,12 @@ struct _sapi_post_entry { #define SAPI_TREAT_DATA_FUNC(treat_data) void treat_data(int arg, char *str, zval* destArray TSRMLS_DC) #define SAPI_INPUT_FILTER_FUNC(input_filter) unsigned int input_filter(int arg, char *var, char **val, unsigned int val_len TSRMLS_DC) -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() SAPI_API SAPI_POST_READER_FUNC(sapi_read_standard_form_data); SAPI_API SAPI_POST_READER_FUNC(php_default_post_reader); SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data); SAPI_API SAPI_INPUT_FILTER_FUNC(php_default_input_filter); -END_EXTERN_C(); +END_EXTERN_C() #define STANDARD_SAPI_MODULE_PROPERTIES diff --git a/main/php_main.h b/main/php_main.h index bc74da8ef4..10825e709a 100644 --- a/main/php_main.h +++ b/main/php_main.h @@ -26,7 +26,7 @@ #include "php_globals.h" #include "SAPI.h" -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() PHPAPI int php_request_startup(TSRMLS_D); PHPAPI void php_request_shutdown(void *dummy); PHPAPI void php_request_shutdown_for_exec(void *dummy); @@ -53,6 +53,6 @@ extern void php_call_shutdown_functions(void); /* environment module */ extern int php_init_environ(void); extern int php_shutdown_environ(void); -END_EXTERN_C(); +END_EXTERN_C() #endif diff --git a/main/php_variables.h b/main/php_variables.h index 569493a72c..198bab4761 100644 --- a/main/php_variables.h +++ b/main/php_variables.h @@ -30,7 +30,7 @@ #define PARSE_COOKIE 2 #define PARSE_STRING 3 -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() void php_treat_data(int arg, char *str, zval* destArray TSRMLS_DC); void php_startup_auto_globals(TSRMLS_D); extern PHPAPI void (*php_import_environment_variables)(zval *array_ptr TSRMLS_DC); @@ -40,7 +40,7 @@ PHPAPI void php_register_variable_safe(char *var, char *val, int val_len, pval * PHPAPI void php_register_variable_ex(char *var, zval *val, pval *track_vars_array TSRMLS_DC); int php_hash_environment(TSRMLS_D); -END_EXTERN_C(); +END_EXTERN_C() #define NUM_TRACK_VARS 6 |
