diff options
| author | Uwe Steinmann <steinm@php.net> | 1999-08-19 06:43:44 +0000 |
|---|---|---|
| committer | Uwe Steinmann <steinm@php.net> | 1999-08-19 06:43:44 +0000 |
| commit | 7d52d5b786e22809382181845422aa4d3a495ff0 (patch) | |
| tree | a40022e27154c74f48fde07418d432b0a5ec6d76 | |
| parent | 314f10749820c896821f4d92d2aada73498314bf (diff) | |
| download | php-git-7d52d5b786e22809382181845422aa4d3a495ff0.tar.gz | |
missing return type
| -rw-r--r-- | ext/pdf/pdf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/pdf/pdf.c b/ext/pdf/pdf.c index 67ac8de201..39973ad6eb 100644 --- a/ext/pdf/pdf.c +++ b/ext/pdf/pdf.c @@ -201,7 +201,7 @@ PHP_MSHUTDOWN_FUNCTION(pdf){ return SUCCESS; } -/* {{{ proto pdf_set_info_creator(int info, string creator) +/* {{{ proto bool pdf_set_info_creator(int info, string creator) Fills the creator field of the info structure */ PHP_FUNCTION(pdf_set_info_creator) { pval *arg1, *arg2; @@ -229,7 +229,7 @@ PHP_FUNCTION(pdf_set_info_creator) { } /* }}} */ -/* {{{ proto pdf_set_info_title(int info, string title) +/* {{{ proto bool pdf_set_info_title(int info, string title) Fills the title field of the info structure */ PHP_FUNCTION(pdf_set_info_title) { pval *arg1, *arg2; @@ -257,7 +257,7 @@ PHP_FUNCTION(pdf_set_info_title) { } /* }}} */ -/* {{{ proto pdf_set_info_subject(int info, string subject) +/* {{{ proto bool pdf_set_info_subject(int info, string subject) Fills the subject field of the info structure */ PHP_FUNCTION(pdf_set_info_subject) { pval *arg1, *arg2; @@ -285,7 +285,7 @@ PHP_FUNCTION(pdf_set_info_subject) { } /* }}} */ -/* {{{ proto pdf_set_info_author(int info, string author) +/* {{{ proto bool pdf_set_info_author(int info, string author) Fills the author field of the info structure */ PHP_FUNCTION(pdf_set_info_author) { pval *arg1, *arg2; @@ -313,7 +313,7 @@ PHP_FUNCTION(pdf_set_info_author) { } /* }}} */ -/* {{{ proto pdf_set_info_keywords(int info, string keywords) +/* {{{ proto bool pdf_set_info_keywords(int info, string keywords) Fills the keywords field of the info structure */ PHP_FUNCTION(pdf_set_info_keywords) { pval *arg1, *arg2; @@ -733,7 +733,7 @@ PHP_FUNCTION(pdf_set_text_matrix) { /* }}} */ /* {{{ proto void pdf_set_text_pos(int pdfdoc, double x, double y) - ??? */ + Set the position of text for the next pdf_show call */ PHP_FUNCTION(pdf_set_text_pos) { pval *arg1, *arg2, *arg3; int id, type; |
