mirror of https://github.com/GNOME/gimp.git
gtkdoc is even more picky than an IRIX compiler...
--Sven
This commit is contained in:
parent
9fd7a4ef2d
commit
c9d17e59e9
|
@ -3,7 +3,7 @@
|
||||||
* libgimp/gimpchannel.c
|
* libgimp/gimpchannel.c
|
||||||
* libgimp/gimpimage.c
|
* libgimp/gimpimage.c
|
||||||
* libgimp/gimplayer.c
|
* libgimp/gimplayer.c
|
||||||
* libgimp/gimpproceduraldb.c
|
* libgimp/gimpproceduraldb.[ch]
|
||||||
* libgimp/gimpselection.c: document wrapped PDB wrappers
|
* libgimp/gimpselection.c: document wrapped PDB wrappers
|
||||||
|
|
||||||
2000-08-25 Sven Neumann <sven@gimp.org>
|
2000-08-25 Sven Neumann <sven@gimp.org>
|
||||||
|
|
|
@ -3778,7 +3778,7 @@ gchar *help_path
|
||||||
<FUNCTION>
|
<FUNCTION>
|
||||||
<NAME>gimp_procedural_db_proc_info</NAME>
|
<NAME>gimp_procedural_db_proc_info</NAME>
|
||||||
<RETURNS>gboolean </RETURNS>
|
<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>
|
||||||
<FUNCTION>
|
<FUNCTION>
|
||||||
<NAME>gimp_procedural_db_get_data</NAME>
|
<NAME>gimp_procedural_db_get_data</NAME>
|
||||||
|
@ -3788,7 +3788,7 @@ gchar *identifier,gpointer data
|
||||||
<FUNCTION>
|
<FUNCTION>
|
||||||
<NAME>gimp_procedural_db_set_data</NAME>
|
<NAME>gimp_procedural_db_set_data</NAME>
|
||||||
<RETURNS>gboolean </RETURNS>
|
<RETURNS>gboolean </RETURNS>
|
||||||
gchar *identifier,gpointer data,guint32 length
|
gchar *identifier,gpointer data,guint32 bytes
|
||||||
</FUNCTION>
|
</FUNCTION>
|
||||||
<FUNCTION>
|
<FUNCTION>
|
||||||
<NAME>gimp_procedural_db_dump</NAME>
|
<NAME>gimp_procedural_db_dump</NAME>
|
||||||
|
|
|
@ -28,9 +28,11 @@ gimpproceduraldb
|
||||||
@proc_type:
|
@proc_type:
|
||||||
@num_args:
|
@num_args:
|
||||||
@num_values:
|
@num_values:
|
||||||
@params:
|
@args:
|
||||||
@return_vals:
|
@return_vals:
|
||||||
@Returns:
|
@Returns:
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
|
@params:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gimp_procedural_db_get_data ##### -->
|
<!-- ##### FUNCTION gimp_procedural_db_get_data ##### -->
|
||||||
|
@ -50,8 +52,10 @@ gimpproceduraldb
|
||||||
|
|
||||||
@identifier:
|
@identifier:
|
||||||
@data:
|
@data:
|
||||||
@length:
|
@bytes:
|
||||||
@Returns:
|
@Returns:
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
|
@length:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gimp_procedural_db_dump ##### -->
|
<!-- ##### FUNCTION gimp_procedural_db_dump ##### -->
|
||||||
|
|
|
@ -149,6 +149,7 @@ gimp_procedural_db_get_data (gchar *identifier,
|
||||||
* gimp_procedural_db_set_data:
|
* gimp_procedural_db_set_data:
|
||||||
* @identifier: The identifier associated with data.
|
* @identifier: The identifier associated with data.
|
||||||
* @data: A byte array containing data.
|
* @data: A byte array containing data.
|
||||||
|
* @bytes: The number of bytes in the data
|
||||||
*
|
*
|
||||||
* Associates the specified identifier with the supplied data.
|
* Associates the specified identifier with the supplied data.
|
||||||
*
|
*
|
||||||
|
|
|
@ -38,13 +38,13 @@ gboolean gimp_procedural_db_proc_info (gchar *procedure,
|
||||||
GimpPDBProcType *proc_type,
|
GimpPDBProcType *proc_type,
|
||||||
gint *num_args,
|
gint *num_args,
|
||||||
gint *num_values,
|
gint *num_values,
|
||||||
GimpParamDef **params,
|
GimpParamDef **args,
|
||||||
GimpParamDef **return_vals);
|
GimpParamDef **return_vals);
|
||||||
gboolean gimp_procedural_db_get_data (gchar *identifier,
|
gboolean gimp_procedural_db_get_data (gchar *identifier,
|
||||||
gpointer data);
|
gpointer data);
|
||||||
gboolean gimp_procedural_db_set_data (gchar *identifier,
|
gboolean gimp_procedural_db_set_data (gchar *identifier,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
guint32 length);
|
guint32 bytes);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue