diff options
author | Sterling Hughes <sterling@php.net> | 2000-05-20 00:13:05 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-05-20 00:13:05 +0000 |
commit | 8580374aa10e474736182dbc0f6e5dbcf4806968 (patch) | |
tree | 37310b86c0752cec473525748769e009c86acb2a /ext/swf/swf.c | |
parent | af77bc0583ca70c8648c52781899b5d0c9567e2f (diff) | |
download | php-git-8580374aa10e474736182dbc0f6e5dbcf4806968.tar.gz |
Proto fixes.
#Harmut -- I love your web site, I was able to see that these functions
#didn't have prototypes just by checking out the SWF extension area!
Diffstat (limited to 'ext/swf/swf.c')
-rw-r--r-- | ext/swf/swf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/swf/swf.c b/ext/swf/swf.c index 2ab525db64..f35f1980c2 100644 --- a/ext/swf/swf.c +++ b/ext/swf/swf.c @@ -287,7 +287,7 @@ PHP_FUNCTION(swf_modifyobject) } /* }}} */ -/* {{{ swf_removeobject(int depth) +/* {{{ proto void swf_removeobject(int depth) Removes the object at the specified depth */ PHP_FUNCTION(swf_removeobject) { @@ -990,7 +990,7 @@ PHP_FUNCTION(swf_viewport) } /* }}} */ -/* {{{ void swf_ortho2(double xmin, double xmax, double ymin, double ymax) +/* {{{ proto void swf_ortho2(double xmin, double xmax, double ymin, double ymax) Defines a 2-D orthographic mapping of user coordinates onto the current viewport */ PHP_FUNCTION(swf_ortho2) { |