sniper Fri Apr 6 19:48:20 2001 EDT
Modified files:
/php4/ext/fdf fdf.c
Log:
fixed protos
Index: php4/ext/fdf/fdf.c
diff -u php4/ext/fdf/fdf.c:1.44 php4/ext/fdf/fdf.c:1.45
--- php4/ext/fdf/fdf.c:1.44 Fri Apr 6 16:17:31 2001
+++ php4/ext/fdf/fdf.c Fri Apr 6 19:48:19 2001
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: fdf.c,v 1.44 2001/04/06 23:17:31 sniper Exp $ */
+/* $Id: fdf.c,v 1.45 2001/04/07 02:48:19 sniper Exp $ */
/* FdfTk lib 2.0 is a Complete C/C++ FDF Toolkit available from
http://beta1.adobe.com/ada/acrosdk/forms.html. */
@@ -162,7 +162,7 @@
/* {{{ proto int fdf_open(string filename)
- Open a new FDF document */
+ Opens a new FDF document */
PHP_FUNCTION(fdf_open)
{
zval **file;
@@ -188,7 +188,7 @@
/* {{{ proto int fdf_create(void)
- Create a new FDF document */
+ Creates a new FDF document */
PHP_FUNCTION(fdf_create)
{
FDFDoc fdf;
@@ -207,7 +207,7 @@
/* {{{ proto bool fdf_close(int fdfdoc)
- Close the FDF document */
+ Closes the FDF document */
PHP_FUNCTION(fdf_close)
{
zval **fdfp;
@@ -224,7 +224,7 @@
/* {{{ proto string fdf_get_value(int fdfdoc, string fieldname)
- Get the value of a field as string */
+ Gets the value of a field as string */
PHP_FUNCTION(fdf_get_value)
{
zval **fdfp, **fieldname;
@@ -261,7 +261,7 @@
/* {{{ proto bool fdf_set_value(int fdfdoc, string fieldname, string value, int
isname)
- Set the value of a field */
+ Sets the value of a field */
PHP_FUNCTION(fdf_set_value)
{
zval **fdfp, **fieldname, **value, **isname;
@@ -289,7 +289,7 @@
/* {{{ proto string fdf_next_field_name(int fdfdoc [, string fieldname])
- Get the name of the next field name or the first field name */
+ Gets the name of the next field name or the first field name */
PHP_FUNCTION(fdf_next_field_name)
{
zval **fdfp, **field;
@@ -331,7 +331,7 @@
/* {{{ proto bool fdf_set_ap(int fdfdoc, string fieldname, int face, string filename,
int pagenr)
- Set the appearence of a field */
+ Sets the appearence of a field */
PHP_FUNCTION(fdf_set_ap)
{
zval **fdfp, **fieldname, **face, **filename, **pagenr;
@@ -381,7 +381,7 @@
/* {{{ proto bool fdf_set_status(int fdfdoc, string status)
- Set the value of /Status key */
+ Sets the value of /Status key */
PHP_FUNCTION(fdf_set_status)
{
zval **fdfp, **status;
@@ -408,7 +408,7 @@
/* {{{ proto string fdf_get_status(int fdfdoc)
- Get the value of /Status key */
+ Gets the value of /Status key */
PHP_FUNCTION(fdf_get_status)
{
zval **fdfp;
@@ -444,7 +444,7 @@
/* {{{ proto bool fdf_set_file(int fdfdoc, string filename)
- Set the value of /F key */
+ Sets the value of /F key */
PHP_FUNCTION(fdf_set_file)
{
zval **fdfp, **filename;
@@ -471,7 +471,7 @@
/* {{{ proto string fdf_get_file(int fdfdoc)
- Get the value of /F key */
+ Gets the value of /F key */
PHP_FUNCTION(fdf_get_file)
{
zval **fdfp;
@@ -507,7 +507,7 @@
/* {{{ proto bool fdf_save(int fdfdoc, string filename)
- Write out the FDF file */
+ Writes out the FDF file */
PHP_FUNCTION(fdf_save)
{
zval **fdfp, **filename;
@@ -534,7 +534,7 @@
/* {{{ proto bool fdf_add_template(int fdfdoc, int newpage, string filename, string
template, int rename)
- Add a template into the FDF document */
+ Adds a template into the FDF document */
PHP_FUNCTION(fdf_add_template)
{
zval **fdfp, **newpage, **filename, **template, **rename;
@@ -574,7 +574,7 @@
/* {{{ proto bool fdf_set_flags(int fdfdoc, string fieldname, int whichflags, int
newflags)
- Set flags for a field in the FDF document. */
+ Sets flags for a field in the FDF document */
PHP_FUNCTION(fdf_set_flags)
{
zval **fdfp, **fieldname, **flags, **newflags;
@@ -603,7 +603,7 @@
/* {{{ proto bool fdf_set_opt(int fdfdoc, string fieldname, int element, string
value, string name)
- Set a value in the opt array for a field. */
+ Sets a value in the opt array for a field */
PHP_FUNCTION(fdf_set_opt)
{
zval **fdfp, **fieldname, **element, **value, **name;
@@ -632,7 +632,7 @@
/* {{{ proto bool fdf_set_submit_form_action(int fdfdoc, string fieldname, int
whichtrigger, string url, int flags)
- Set the submit form action for a field. */
+ Sets the submit form action for a field */
PHP_FUNCTION(fdf_set_submit_form_action)
{
zval **fdfp, **fieldname, **trigger, **url, **flags;
@@ -661,7 +661,7 @@
/* {{{ proto bool fdf_set_javascript_action(int fdfdoc, string fieldname, int
whichtrigger, string script)
- Set the javascript action for a field. */
+ Sets the javascript action for a field */
PHP_FUNCTION(fdf_set_javascript_action)
{
zval **fdfp, **fieldname, **trigger, **script;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]