diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2011-06-04 17:30:12 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2011-06-04 17:30:12 +0200 |
| commit | fb5a52884dd17d17bab47de7f53c17c05ced6e1b (patch) | |
| tree | fdb3873d295b615bfb1689c54fb76e3abb4e273f /src/replace-table.h | |
| parent | 960c477148cf832f79e89a4cdf9f3ce3389c7b06 (diff) | |
| download | cataract-fb5a52884dd17d17bab47de7f53c17c05ced6e1b.tar.xz | |
Introduce conditional system
This is very basic scripting support - simple value retrieval and
block conditionals. Defines could be either static from theme setup
or programatically added during page generation.
Diffstat (limited to 'src/replace-table.h')
| -rw-r--r-- | src/replace-table.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/replace-table.h b/src/replace-table.h index 916af2b..799956d 100644 --- a/src/replace-table.h +++ b/src/replace-table.h @@ -28,6 +28,12 @@ typedef GHashTable ReplaceTable; ReplaceTable * replace_table_new (); +/* + * replace_table_new_from_defines: creates new replace table object and fills it with defines from the hash table + * + */ +ReplaceTable * replace_table_new_from_defines (GHashTable *defines); + void replace_table_free (ReplaceTable *table); |
