From c0ec7e1f4006729da406c35c5ed2e46fa352896c Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Fri, 13 Jan 2006 01:03:40 +0000 Subject: [PATCH] Introduced new types: keyed_string_t and keyed_int_t, for use in str_util.c-> replace_keyed_values(). --- src/xpdev/gen_defs.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/xpdev/gen_defs.h b/src/xpdev/gen_defs.h index 55042357c0..1035c2c70c 100644 --- a/src/xpdev/gen_defs.h +++ b/src/xpdev/gen_defs.h @@ -8,7 +8,7 @@ * @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * * - * Copyright 2004 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public License * @@ -211,6 +211,17 @@ typedef struct { BOOL value; } named_bool_t; +typedef struct { + int key; + char* value; +} keyed_string_t; + +typedef struct { + int key; + int value; +} keyed_int_t; + + /************************/ /* Handy Integer Macros */ /************************/ -- GitLab