|
funkalicious 0.1
|
#include <gio/gio.h>#include <libdotcode/displ.h>#include <libdotcode/grid1.h>#include <libdotcode/matdb-dotcode.h>
Include dependency graph for displ.c:Go to the source code of this file.
Functions | |
| struct dotcode_grid1 * | dotcode_displ_get_grid1 (GFile *f, GError **e) |
| struct matdb * | dotcode_displ_get_matdb (GFile *f, GError **e) |
| struct dotcode_grid1* dotcode_displ_get_grid1 | ( | GFile * | f, |
| GError ** | e | ||
| ) | [read] |
Definition at line 32 of file displ.c.
References dotcode_grid1_get_from_gfile().
Referenced by main().
{
GFile* gridfile = g_file_get_child(f, "grid");
return dotcode_grid1_get_from_gfile(gridfile, e);
}
Here is the call graph for this function:
Here is the caller graph for this function:| struct matdb* dotcode_displ_get_matdb | ( | GFile * | f, |
| GError ** | e | ||
| ) | [read] |
Definition at line 37 of file displ.c.
References read_matdb_dotcode_gio().
Referenced by main().
{
GFile* matdbfile = g_file_get_child(f, ".matdb");
return read_matdb_dotcode_gio(matdbfile, e);
}
Here is the call graph for this function:
Here is the caller graph for this function: