diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2003-05-20 13:47:31 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2003-05-20 13:47:31 +0000 |
commit | 6c074dfb7cb10539f94ef020afb1d6800ffb5a53 (patch) | |
tree | dc635284db09c0acf3ef5abc37ed496983261eb3 /scripts | |
parent | c9744519cd634a9fad0d8bef502ecebadca3dd80 (diff) | |
download | php-git-6c074dfb7cb10539f94ef020afb1d6800ffb5a53.tar.gz |
example for "stream" as parameter and return type
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ext_skel_ng/extension.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/ext_skel_ng/extension.xml b/scripts/ext_skel_ng/extension.xml index 7d5d1eee10..03603bbd6d 100644 --- a/scripts/ext_skel_ng/extension.xml +++ b/scripts/ext_skel_ng/extension.xml @@ -161,14 +161,18 @@ bar </code> </function> - <function name ="dummy_void"> + <function name="dummy_void"> <proto>void dummy_void(void)</proto> </function> - <function name ="dummy_void2"> + <function name="dummy_void2"> <proto>void dummy_void2()</proto> </function> + <function name="dummy_stream"> + <proto>stream dummy_stream(stream s)</proto> + </function> + </functions> </extension>
\ No newline at end of file |