diff options
author | jstebbins <[email protected]> | 2008-09-09 23:14:28 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-09 23:14:28 +0000 |
commit | e57d4d0bf36c3b5d4691134d0fdb8171cb25f843 (patch) | |
tree | ad4dddfe057558ad5cd8fd5c02eb1d156079c709 /gtk/src/resources.h | |
parent | ebf4b4d663b9eeeed5d9632b5a2076355cff7145 (diff) |
LinGui: consolidate all resources into one stringified plist file that gets
compiled in. icons and everyting all rolled up into one ball-o-wax.
hehe, plists are cool
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1685 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/resources.h')
-rw-r--r-- | gtk/src/resources.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gtk/src/resources.h b/gtk/src/resources.h new file mode 100644 index 000000000..dfca11db2 --- /dev/null +++ b/gtk/src/resources.h @@ -0,0 +1,22 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Library General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA + */ +#if !defined(_RESOURCES_H_) +#define _RESOURCES_H_ + +void ghb_resource_init(void); +GValue* ghb_resource_get(const gchar *name); + +#endif // _RESOURCES_H_ |