diff options
Diffstat (limited to 'os/configstr.h')
-rw-r--r-- | os/configstr.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/os/configstr.h b/os/configstr.h index 1c8184f..9000acc 100644 --- a/os/configstr.h +++ b/os/configstr.h @@ -47,13 +47,16 @@ in this Software without prior written authorization from The Open Group. * @(#)configstr.h 4.1 91/05/02 * */ +/* $XFree86: xc/programs/xfs/os/configstr.h,v 1.5 2001/12/14 20:01:41 dawes Exp $ */ #ifndef _CONFIGSTR_H_ #define _CONFIGSTR_H_ #include "config.h" -typedef struct _config_options { +typedef struct _config_options ConfigOptionRec, *ConfigOptionPtr; + +struct _config_options { char *parm_name; - char *(*set_func) (); -} ConfigOptionRec, *ConfigOptionPtr; + char *(*set_func) (ConfigOptionPtr, char *); +}; #endif /* _CONFIGSTR_H_ */ |