Fix function prototype description for external renderer

This commit is contained in:
Mario Hüttel 2019-06-22 14:03:33 +02:00
parent 02a59c4cc5
commit 58d3f5c57c
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ G_DECLARE_FINAL_TYPE(ExternalRenderer, external_renderer, GDS_RENDER, EXTERNAL_R
*
* The function has to be defined as follows:
* @code
* int EXTERNAL_LIBRARY_FUNCTION(gds_cell *toplevel, GList *layer_info_list, const char *output_file_name, double scale)
* int EXTERNAL_LIBRARY_FUNCTION(struct gds_cell *toplevel, GList *layer_info_list, const char *output_file_name, double scale)
* @endcode
*/
#define EXTERNAL_LIBRARY_FUNCTION "render_cell_to_file"