diff options
author | Frank M. Kromann <fmk@php.net> | 2004-03-26 21:56:31 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2004-03-26 21:56:31 +0000 |
commit | 3d6ca9f2ccbdc83ec823fbf3f9e3b6d35e088309 (patch) | |
tree | 231870f3fa341bd4efa97f3b10069a657b302994 /ext/ming/ming.c | |
parent | f956b50f652fe83f61bdbcace817d46c55a1bb67 (diff) | |
download | php-git-3d6ca9f2ccbdc83ec823fbf3f9e3b6d35e088309.tar.gz |
Fix complation errors after convertion to new macro's
Diffstat (limited to 'ext/ming/ming.c')
-rw-r--r-- | ext/ming/ming.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ming/ming.c b/ext/ming/ming.c index 5c47184572..c049b8ccde 100644 --- a/ext/ming/ming.c +++ b/ext/ming/ming.c @@ -1358,7 +1358,7 @@ PHP_METHOD(swffontchar, addUTF8Chars) /* }}} */ static zend_function_entry swffontchar_functions[] = { - PHP_ME(swffontchar, __construct, NULL, 0) + PHP_ME(swffontchar, addChars, NULL, 0) PHP_ME(swffontchar, addUTF8Chars, NULL, 0) { NULL, NULL, NULL } }; @@ -1872,7 +1872,7 @@ PHP_METHOD(swfsoundinstance, loopCount) /* }}} */ static zend_function_entry swfsoundinstance_functions[] = { - PHP_ME(swfsoundinstance, __construct, NULL, 0) + PHP_ME(swfsoundinstance, noMultiple, NULL, 0) PHP_ME(swfsoundinstance, loopInPoint, NULL, 0) PHP_ME(swfsoundinstance, loopOutPoint, NULL, 0) PHP_ME(swfsoundinstance, loopCount, NULL, 0) @@ -2216,9 +2216,9 @@ PHP_METHOD(swfmovie, setFrames) /* }}} */ #ifdef HAVE_NEW_MING -/* {{{ proto void swfmovie_streamMp3(mixed file) +/* {{{ proto void swfmovie_streamMP3(mixed file) Sets sound stream of the SWF movie. The parameter can be stream or string. */ -PHP_METHOD(swfmovie, streamMp3) +PHP_METHOD(swfmovie, streamMP3) { zval **zfile; SWFSoundStream sound; |