diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-06 17:51:48 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-06 17:51:48 +0000 |
commit | 250aded26522a03bd96d4818367e3b5304504190 (patch) | |
tree | c0c95d197004d91a06863dad8aeb301a84f5d6da /ext/satellite/php_orbit.c | |
parent | 42486196ad5e92d248b62b9c0691969ab81ef453 (diff) | |
download | php-git-250aded26522a03bd96d4818367e3b5304504190.tar.gz |
proto fixes
Diffstat (limited to 'ext/satellite/php_orbit.c')
-rw-r--r-- | ext/satellite/php_orbit.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ext/satellite/php_orbit.c b/ext/satellite/php_orbit.c index 5fbef2cc52..3a12bedd00 100644 --- a/ext/satellite/php_orbit.c +++ b/ext/satellite/php_orbit.c @@ -136,7 +136,8 @@ PHP_MINFO_FUNCTION(satellite) DISPLAY_INI_ENTRIES(); } -/* instruct the type manager to load an IDL file if not already loaded */ +/* {{{ proto bool satellite_load_idl(string file) + Instruct the type manager to load an IDL file if not already loaded */ PHP_FUNCTION(satellite_load_idl) { zval * p_parameter; @@ -156,7 +157,10 @@ PHP_FUNCTION(satellite_load_idl) RETURN_BOOL(TypeManager_LoadFile(Z_STRVAL_P(p_parameter))); } +/* }}} */ +/* {{{ proto int satellite_get_repository_id(object obj) + NOT IMPLEMENTED */ /* * NOT IMPLEMENTED * @@ -165,6 +169,7 @@ PHP_FUNCTION(satellite_load_idl) PHP_FUNCTION(satellite_get_repository_id) { } +/* }}} */ /* {{{ proto bool satellite_caught_exception(void) See if an exception was caught from the previous function */ @@ -172,7 +177,10 @@ PHP_FUNCTION(satellite_caught_exception) { RETURN_BOOL(orbit_caught_exception()); } +/* }}} */ +/* {{{ proto string satellite_exception_id(void) + Get exception caught from the previous function */ PHP_FUNCTION(satellite_exception_id) { CORBA_char * p_id = CORBA_exception_id(orbit_get_environment()); @@ -181,6 +189,8 @@ PHP_FUNCTION(satellite_exception_id) } /* }}} */ +/* {{{ proto object satellite_exception_value(void) + Get the exception struct for the latest exception */ /* real name: php_if_orbit_exception_value */ PHP_FUNCTION(satellite_exception_value) { @@ -201,4 +211,4 @@ PHP_FUNCTION(satellite_exception_value) /* create structure with exception data */ orbit_namedvalue_to_zval(&source, return_value); } - +/* }}} */ |