aboutsummaryrefslogtreecommitdiffstats
path: root/property.h
diff options
context:
space:
mode:
Diffstat (limited to 'property.h')
-rw-r--r--property.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/property.h b/property.h
index a227ca1..75c65fc 100644
--- a/property.h
+++ b/property.h
@@ -1,4 +1,5 @@
-/* $Id: property.h,v 1.3 2006/08/14 05:54:04 reinelt Exp $
+/* $Id: property.h 749 2007-01-20 06:37:35Z michael $
+ * $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/property.h $
*
* dynamic properties
*
@@ -21,17 +22,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- *
- * $Log: property.h,v $
- * Revision 1.3 2006/08/14 05:54:04 reinelt
- * minor warnings fixed, CFLAGS changed (no-strict-aliasing)
- *
- * Revision 1.2 2006/08/13 11:38:20 reinelt
- * text widget uses dynamic properties
- *
- * Revision 1.1 2006/08/13 09:53:10 reinelt
- * dynamic properties added (used by 'style' of text widget)
- *
*/
@@ -42,6 +32,7 @@
typedef struct {
+ int valid;
char *name;
char *expression;
void *compiled;
@@ -50,6 +41,7 @@ typedef struct {
void property_load(const char *section, const char *name, const char *defval, PROPERTY * prop);
+int property_valid(PROPERTY * prop);
int property_eval(PROPERTY * prop);
double P2N(PROPERTY * prop);
char *P2S(PROPERTY * prop);