gtkdoc is even more picky than an IRIX compiler...

--Sven
This commit is contained in:
Sven Neumann 2000-08-25 00:47:03 +00:00
parent 9fd7a4ef2d
commit c9d17e59e9
5 changed files with 12 additions and 7 deletions

View File

@ -3,7 +3,7 @@
* libgimp/gimpchannel.c
* libgimp/gimpimage.c
* libgimp/gimplayer.c
* libgimp/gimpproceduraldb.c
* libgimp/gimpproceduraldb.[ch]
* libgimp/gimpselection.c: document wrapped PDB wrappers
2000-08-25 Sven Neumann <sven@gimp.org>

View File

@ -3778,7 +3778,7 @@ gchar *help_path
<FUNCTION>
<NAME>gimp_procedural_db_proc_info</NAME>
<RETURNS>gboolean </RETURNS>
gchar *procedure,gchar **blurb,gchar **help,gchar **author,gchar **copyright,gchar **date,GimpPDBProcType *proc_type,gint *num_args,gint *num_values,GimpParamDef **params,GimpParamDef **return_vals
gchar *procedure,gchar **blurb,gchar **help,gchar **author,gchar **copyright,gchar **date,GimpPDBProcType *proc_type,gint *num_args,gint *num_values,GimpParamDef **args,GimpParamDef **return_vals
</FUNCTION>
<FUNCTION>
<NAME>gimp_procedural_db_get_data</NAME>
@ -3788,7 +3788,7 @@ gchar *identifier,gpointer data
<FUNCTION>
<NAME>gimp_procedural_db_set_data</NAME>
<RETURNS>gboolean </RETURNS>
gchar *identifier,gpointer data,guint32 length
gchar *identifier,gpointer data,guint32 bytes
</FUNCTION>
<FUNCTION>
<NAME>gimp_procedural_db_dump</NAME>

View File

@ -28,9 +28,11 @@ gimpproceduraldb
@proc_type:
@num_args:
@num_values:
@params:
@args:
@return_vals:
@Returns:
<!-- # Unused Parameters # -->
@params:
<!-- ##### FUNCTION gimp_procedural_db_get_data ##### -->
@ -50,8 +52,10 @@ gimpproceduraldb
@identifier:
@data:
@length:
@bytes:
@Returns:
<!-- # Unused Parameters # -->
@length:
<!-- ##### FUNCTION gimp_procedural_db_dump ##### -->

View File

@ -149,6 +149,7 @@ gimp_procedural_db_get_data (gchar *identifier,
* gimp_procedural_db_set_data:
* @identifier: The identifier associated with data.
* @data: A byte array containing data.
* @bytes: The number of bytes in the data
*
* Associates the specified identifier with the supplied data.
*

View File

@ -38,13 +38,13 @@ gboolean gimp_procedural_db_proc_info (gchar *procedure,
GimpPDBProcType *proc_type,
gint *num_args,
gint *num_values,
GimpParamDef **params,
GimpParamDef **args,
GimpParamDef **return_vals);
gboolean gimp_procedural_db_get_data (gchar *identifier,
gpointer data);
gboolean gimp_procedural_db_set_data (gchar *identifier,
gpointer data,
guint32 length);
guint32 bytes);
#ifdef __cplusplus