]> granicus.if.org Git - php/commitdiff
proto fixes
authorHartmut Holzgraefe <hholzgra@php.net>
Sat, 15 Dec 2001 14:22:59 +0000 (14:22 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Sat, 15 Dec 2001 14:22:59 +0000 (14:22 +0000)
ext/gettext/gettext.c
ext/ming/ming.c

index 162f1ab26aaabe517a7a2686f6c3cb7ab2d0c1ec..f36b2e48b03793d002804157c83cf4592a2788e2 100644 (file)
@@ -217,7 +217,7 @@ PHP_FUNCTION(ngettext)
 #endif
 
 #if HAVE_DNGETTEXT
-/* {{{ proto string dngettext (string domain, string msgid1, string msgid2, long count)
+/* {{{ proto string dngettext (string domain, string msgid1, string msgid2, int count)
    Plural version of dgettext() */
 PHP_FUNCTION(dngettext)
 {
@@ -245,7 +245,7 @@ PHP_FUNCTION(dngettext)
 #endif
 
 #if HAVE_DCNGETTEXT
-/* {{{ proto string dcngettext (string domain, string msgid1, string msgid2, long n, int category)
+/* {{{ proto string dcngettext (string domain, string msgid1, string msgid2, int n, int category)
    Plural version of dcgettext() */                                                            
 PHP_FUNCTION(dcngettext)
 {
index c15eb8555af054165ab6e3dea263e9f8b2b1ff23..69bcb57c3a256a5a541fe764a7c21f5cee98f55b 100644 (file)
@@ -53,6 +53,8 @@ static SWFAction getAction(zval *id TSRMLS_DC);
 static SWFMorph getMorph(zval *id TSRMLS_DC);
 static SWFMovieClip getSprite(zval *id TSRMLS_DC);
 
+/* {{{ proto void ming_setcubicthreshold (int threshold)
+       Set cubic threshold (?) */
 PHP_FUNCTION(ming_setCubicThreshold)
 {
   zval **num;
@@ -64,7 +66,10 @@ PHP_FUNCTION(ming_setCubicThreshold)
 
   Ming_setCubicThreshold(Z_LVAL_PP(num));
 }
+/* }}} */
 
+/* {{{ proto void ming_setscale(int scale)
+       Set scale (?) */
 PHP_FUNCTION(ming_setScale)
 {
   zval **num;
@@ -76,7 +81,10 @@ PHP_FUNCTION(ming_setScale)
 
   Ming_setScale(Z_DVAL_PP(num));
 }
+/* }}} */
 
+/* {{{ proto void ming_useswfversion(int version)
+       Use SWF version (?) */ 
 PHP_FUNCTION(ming_useSWFVersion)
 {
   zval **num;
@@ -88,6 +96,7 @@ PHP_FUNCTION(ming_useSWFVersion)
 
   Ming_useSWFVersion(Z_LVAL_PP(num));
 }
+/* }}} */
 
 static int le_swfmoviep;
 static int le_swfshapep;
@@ -585,9 +594,9 @@ PHP_FUNCTION(swfbutton_addAction)
 }
 
 /* }}} */
-/* {{{ proto int swfbutton_keypress(string str)
-   Returns the action flag for keyPress(char) */
 
+/* {{{ proto int swfbutton_keypress(string str)
+       Returns the action flag for keyPress(char) */
 PHP_FUNCTION(swfbutton_keypress)
 {
   zval **key;