helly Mon Mar 6 10:03:25 2006 UTC
Modified files:
/php-src/ext/ming ming.c
Log:
- Proto fixes
http://cvs.php.net/viewcvs.cgi/php-src/ext/ming/ming.c?r1=1.83&r2=1.84&diff_format=u
Index: php-src/ext/ming/ming.c
diff -u php-src/ext/ming/ming.c:1.83 php-src/ext/ming/ming.c:1.84
--- php-src/ext/ming/ming.c:1.83 Sun Feb 19 04:29:41 2006
+++ php-src/ext/ming/ming.c Mon Mar 6 10:03:25 2006
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: ming.c,v 1.83 2006/02/19 04:29:41 andi Exp $ */
+/* $Id: ming.c,v 1.84 2006/03/06 10:03:25 helly Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -296,7 +296,7 @@
/* {{{ SWFAction
*/
-/* {{{ proto object swfaction::__construct(string)
+/* {{{ proto void swfaction::__construct(string)
Returns a new SWFAction object, compiling the given script */
PHP_METHOD(swfaction, __construct)
{
@@ -345,7 +345,7 @@
/* {{{ SWFBitmap
*/
-/* {{{ proto class swfbitmap::__construct(mixed file [, mixed maskfile])
+/* {{{ proto void swfbitmap::__construct(mixed file [, mixed maskfile])
Returns a new SWFBitmap object from jpg (with optional mask) or dbl file */
PHP_METHOD(swfbitmap, __construct)
{
@@ -440,7 +440,7 @@
/* {{{ SWFButton
*/
-/* {{{ proto object swfbutton::__construct()
+/* {{{ proto void swfbutton::__construct()
Returns a new SWFButton object */
PHP_METHOD(swfbutton, __construct)
{
@@ -1204,7 +1204,7 @@
/* {{{ SWFFill
*/
-/* {{{ proto class swffill::__construct()
+/* {{{ proto void swffill::__construct()
Returns a new SWFFill object */
PHP_METHOD(swffill, __construct)
{
@@ -1404,7 +1404,7 @@
}
/* }}} */
-/* {{{ proto object swffont::__construct(string filename)
+/* {{{ proto void swffont::__construct(string filename)
Returns a new SWFFont object from given file */
PHP_METHOD(swffont, __construct)
{
@@ -1594,7 +1594,7 @@
/* {{{ SWFGradient
*/
-/* {{{ proto class swfgradient::__construct()
+/* {{{ proto void swfgradient::__construct()
Returns a new SWFGradient object */
PHP_METHOD(swfgradient, __construct)
{
@@ -1669,7 +1669,7 @@
/* {{{ SWFMorph
*/
-/* {{{ proto object swfmorph::__construct()
+/* {{{ proto void swfmorph::__construct()
Returns a new SWFMorph object */
PHP_METHOD(swfmorph, __construct)
{
@@ -1752,7 +1752,7 @@
}
/* }}} */
-/* {{{ proto class swfsound::__construct(string filename, int flags)
+/* {{{ proto void swfsound::__construct(string filename, int flags)
Returns a new SWFSound object from given file */
PHP_METHOD(swfsound, __construct)
{
@@ -1903,9 +1903,8 @@
/* {{{ SWFVideoStream */
-/* {{{ proto class swfvideostream_init([file])
+/* {{{ proto void swfvideostream_init([file])
Returns a SWVideoStream object */
-
PHP_METHOD(swfvideostream, __construct)
{
zval **zfile = NULL;
@@ -2010,9 +2009,8 @@
#ifdef HAVE_SWFPREBUILTCLIP
/* {{{ SWFPrebuiltClip */
-/* {{{ proto class swfprebuiltclip_init([file])
+/* {{{ proto void swfprebuiltclip_init([file])
Returns a SWFPrebuiltClip object */
-
PHP_METHOD(swfprebuiltclip, __construct)
{
zval **zfile = NULL;
@@ -2088,7 +2086,7 @@
/* {{{ SWFMovie
*/
-/* {{{ proto object swfmovie::__construct(int version)
+/* {{{ proto void swfmovie::__construct(int version)
Creates swfmovie object according to the passed version */
PHP_METHOD(swfmovie, __construct)
{
@@ -2695,7 +2693,7 @@
/* {{{ SWFShape
*/
-/* {{{ proto object swfshape::__construct()
+/* {{{ proto void swfshape::__construct()
Returns a new SWFShape object */
PHP_METHOD(swfshape, __construct)
{
@@ -3216,7 +3214,7 @@
/* {{{ SWFSprite
*/
-/* {{{ proto class swfsprite::__construct()
+/* {{{ proto void swfsprite::__construct()
Returns a new SWFSprite object */
PHP_METHOD(swfsprite, __construct)
{
@@ -3401,7 +3399,7 @@
/* {{{ SWFText
*/
-/* {{{ proto class swftext::__construct()
+/* {{{ proto void swftext::__construct()
Returns new SWFText object */
PHP_METHOD(swftext, __construct)
{
@@ -3687,7 +3685,7 @@
/* {{{ SWFTextField
*/
-/* {{{ proto object swftextfield::__construct([int flags])
+/* {{{ proto void swftextfield::__construct([int flags])
Returns a new SWFTextField object */
PHP_METHOD(swftextfield, __construct)
{
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php