2001-10-16 19:38:07 +00:00
|
|
|
This document describes the driver API of v0.5 of LCDproc.
|
|
|
|
|
At time of this writing, this version is not released and some things might
|
|
|
|
|
be changed.
|
|
|
|
|
|
|
|
|
|
The API consists of several functions to tell the driver that
|
2001-12-30 00:15:25 +00:00
|
|
|
certains actions should be performed, some data, and several functions
|
2001-10-16 19:38:07 +00:00
|
|
|
to retrieve configuration data from the server.
|
|
|
|
|
|
|
|
|
|
OVERVIEW OF OPERATION
|
|
|
|
|
|
|
|
|
|
The API is best descibed by starting with the struct lcd_logical_driver
|
|
|
|
|
which is defined in server/drivers/lcd.h.
|
|
|
|
|
|
|
|
|
|
The use of the API has changed from v0.4 to v0.5. The default functions that
|
|
|
|
|
the server put in the pointers in v0.4 do no longer exist. Instead empty
|
|
|
|
|
functions are the default. If a driver implements a function, the function
|
2001-12-30 00:15:25 +00:00
|
|
|
will be detected by the server. The driver should at least implement all
|
|
|
|
|
basic functions like driver_chr and driver_str itself, and should also have
|
|
|
|
|
defined a number of other symbols for the server.
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2001-12-30 00:15:25 +00:00
|
|
|
I will walk through the driver struct here.
|
2001-10-16 19:38:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct lcd_logical_driver {
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
//////// Variables to be provided by the driver module
|
2001-12-30 00:15:25 +00:00
|
|
|
// The driver loader will look for symbols with these names !
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// pointer to a string describing the API version
|
|
|
|
|
char *api_version;
|
|
|
|
|
|
|
|
|
|
// Does this driver require to be in foreground ?
|
|
|
|
|
int *stay_in_foreground;// Does this driver require to be in foreground ?
|
|
|
|
|
|
|
|
|
|
/ Does this driver support multiple instances ?
|
|
|
|
|
int *supports_multiple;
|
|
|
|
|
|
|
|
|
|
// What should alternatively be prepended to the function names ?
|
|
|
|
|
char **symbol_prefix;
|
|
|
|
|
|
|
|
|
|
/*
|
2001-12-30 00:15:25 +00:00
|
|
|
The programmer should define the following symbols:
|
|
|
|
|
char * api_version = API_VERSION; // <-- this symbol is defined by make
|
2006-04-11 17:54:58 +00:00
|
|
|
int stay_in_foreground = 0; // This driver does not need to be in foreground
|
|
|
|
|
int supports_multiple = 0; // This driver does not c$support multiple instances
|
|
|
|
|
char *symbol_prefix = "MyDriver_"; // Driver functions start with MyDriver_
|
2001-12-30 00:15:25 +00:00
|
|
|
And fill these values with the correct values. Upon loading the driver module,
|
|
|
|
|
the server will locate these symbols and store pointers to them in the
|
|
|
|
|
driver struct.
|
|
|
|
|
|
|
|
|
|
Because the drivers are loadable, some kind of version checking should be
|
|
|
|
|
done. Therefor the server expects the correct version number to be found in
|
|
|
|
|
the api_version symbol (a string). For the v0.5 version this should be "0.5".
|
|
|
|
|
If the version is incompatible, the driver will not be loaded. The current
|
|
|
|
|
API version can always be determined by inserting the compiler define
|
|
|
|
|
API_VERSION in the code.
|
2006-04-11 17:54:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//////// Functions to be provided by the driver module
|
|
|
|
|
|
|
|
|
|
//// Mandatory functions (necessary for all drivers)
|
2006-04-27 15:10:59 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// initialize driver: return >= 0 on success
|
|
|
|
|
int (*init) (Driver *drvthis);
|
2006-04-27 15:10:59 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// close driver
|
|
|
|
|
void (*close) (Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//// Essential output functions (necessary for output drivers)
|
2006-04-27 15:10:59 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// get display width & height (in characters)
|
|
|
|
|
int (*width) (Driver *drvthis);
|
|
|
|
|
int (*height) (Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
// clear screen
|
|
|
|
|
void (*clear) (Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
// flush screen contents to LCD
|
|
|
|
|
void (*flush) (Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
// write string s at position (x,y)
|
|
|
|
|
void (*string) (Driver *drvthis, int x, int y, char *str);
|
|
|
|
|
|
|
|
|
|
// write char c at position (x,y)
|
|
|
|
|
void (*chr) (Driver *drvthis, int x, int y, char c);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//// essential input functions (necessary for input drivers)
|
|
|
|
|
|
|
|
|
|
// get key from driver: returns a string denoting the key pressed
|
|
|
|
|
const char *(*get_key) (Driver *drvthis);
|
|
|
|
|
|
2006-04-27 15:10:59 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
//// Extended output functions (optional; core provides alternatives)
|
|
|
|
|
|
|
|
|
|
// draw a bar from pos (x,y) upward / to the right filling promille of len chars
|
|
|
|
|
void (*vbar) (Driver *drvthis, int x, int y, int len, int promille, int options);
|
|
|
|
|
void (*hbar) (Driver *drvthis, int x, int y, int len, int promille, int options);
|
|
|
|
|
|
|
|
|
|
// display (big) number num at horizontal position x
|
|
|
|
|
void (*num) (Driver *drvthis, int x, int num);
|
|
|
|
|
|
2006-04-12 09:24:17 +00:00
|
|
|
// set heartbeat state; animate heartbeat
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*heartbeat) (Driver *drvthis, int state);
|
|
|
|
|
|
|
|
|
|
// draw named icon at position (x,y)
|
|
|
|
|
void (*icon) (Driver *drvthis, int x, int y, int icon);
|
|
|
|
|
|
2006-04-12 09:24:17 +00:00
|
|
|
// set cursor type and move it to position (x,y)
|
|
|
|
|
void (*cursor) (Driver *drvthis, int x, int y, int type);
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
|
|
|
|
|
//// User-defined character functions
|
|
|
|
|
|
|
|
|
|
// set special character / get free characters
|
|
|
|
|
// - It is currently unclear how this system should work exactly
|
|
|
|
|
// - The set_char function expects a simple block of data with 1 byte for each pixel-line.
|
|
|
|
|
// (So that is 8 bytes for a 5x8 char)
|
2006-04-25 20:13:28 +00:00
|
|
|
void (*set_char) (Driver *drvthis, char ch, unsigned char *dat);
|
2006-04-11 17:54:58 +00:00
|
|
|
int (*get_free_chars) (Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
// get width & height of a character cell (in pixels)
|
|
|
|
|
// - necessary to provide info about cell size to clients
|
|
|
|
|
// - if not defined, the core will provide alternatives returning default values
|
|
|
|
|
int (*cellwidth) (Driver *drvthis);
|
|
|
|
|
int (*cellheight) (Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//// Hardware functions
|
|
|
|
|
|
|
|
|
|
// get & set ithe display's contrast
|
|
|
|
|
int (*get_contrast) (Driver *drvthis);
|
|
|
|
|
int (*set_contrast) (Driver *drvthis, int promille);
|
|
|
|
|
|
|
|
|
|
// get & set brightness for given backlight state
|
|
|
|
|
int (*get_brightness) (Driver *drvthis, int state);
|
|
|
|
|
int (*set_brightness) (Driver *drvthis, int state, int promille);
|
|
|
|
|
|
|
|
|
|
// set backlight state
|
|
|
|
|
void (*backlight) (Driver *drvthis, int state);
|
|
|
|
|
|
|
|
|
|
// set output
|
|
|
|
|
void (*output) (Driver *drvthis, int state);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//// Informational functions
|
|
|
|
|
// get a string describing the driver and it's features
|
2006-04-12 08:12:13 +00:00
|
|
|
const char * (*get_info) (Driver *drvthis);
|
2001-12-30 00:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
//////// Variables in server core, available for drivers
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// name of the driver instance (name of the config file section)
|
|
|
|
|
// - do not change from the driver; consider it read-only
|
|
|
|
|
// - to be used to access the driver's own section in the config file
|
|
|
|
|
char * name;
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// pointer to the driver instance's private data
|
|
|
|
|
// - filled by the server by calling store_private_ptr()
|
|
|
|
|
// - the driver should cast this to it's own private structure pointer
|
2001-12-30 00:15:25 +00:00
|
|
|
void * private_data;
|
|
|
|
|
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
//////// Functions in server core, available for drivers
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// store a pointer to the driver instance's private data
|
2001-12-30 00:15:25 +00:00
|
|
|
int (*store_private_ptr) (struct lcd_logical_driver * driver, void * private_data);
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// Config file functions, cwprovided by the server
|
|
|
|
|
// - see configfile.h on how to use these functions
|
|
|
|
|
// - as sectionname, always use the driver name: drvthis->name
|
2001-10-16 19:38:07 +00:00
|
|
|
char (*config_get_bool) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, char default_value);
|
|
|
|
|
int (*config_get_int) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, int default_value);
|
|
|
|
|
double (*config_get_float) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, double default_value);
|
|
|
|
|
char *(*config_get_string) (char * sectionname, char * keyname,
|
2001-12-30 00:15:25 +00:00
|
|
|
int skip, char * default_value);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Returns a string in server memory space.
|
|
|
|
|
// Copy this string.
|
|
|
|
|
int config_has_section (char *sectionname);
|
|
|
|
|
int config_has_key (char *sectionname, char *keyname);
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// error reporting function
|
|
|
|
|
// - see drivers/report.h for details
|
2001-12-30 00:15:25 +00:00
|
|
|
void (*report) ( const int level, const char *format, .../*args*/ );
|
|
|
|
|
|
|
|
|
|
// Display properties functions (for drivers that adapt to other loaded drivers)
|
2006-04-11 17:54:58 +00:00
|
|
|
// - the return the size of another already loaded driver
|
|
|
|
|
// - if no driver is loaded yet, the return values will be 0
|
2001-12-30 00:15:25 +00:00
|
|
|
int (*get_display_width) ();
|
|
|
|
|
int (*get_display_height) ();
|
|
|
|
|
} Driver;
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2001-12-30 00:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
PRIVATE DATA
|
|
|
|
|
|
|
|
|
|
With the introduction of loadable modules it is necesary to stop using global
|
|
|
|
|
variables to store a driver's data in. Instead, you should store it in a
|
|
|
|
|
structure, that you allocate abd store on driver's init. If you don't use
|
|
|
|
|
this system, but use globals, you get queer results if you run two LCDd
|
|
|
|
|
daemons on one machine. They will then use the same variables !
|
|
|
|
|
|
|
|
|
|
In the driver's private structure will probably at least be something like:
|
2001-10-16 19:38:07 +00:00
|
|
|
|
|
|
|
|
typedef struct my_driver_private {
|
2006-04-11 17:54:58 +00:00
|
|
|
int fd; // file descriptor for the LCD device
|
|
|
|
|
int width, height; // dimension of the LCD (in characters, 1-based
|
|
|
|
|
int cellwidth, cellheight; // Size of each LCD cell, in pixels
|
|
|
|
|
unsigned char *framebuf; // Frame buffer...
|
2001-12-30 00:15:25 +00:00
|
|
|
} PrivateData;
|
|
|
|
|
|
|
|
|
|
You allocate and store this structure like this:
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
PrivateData *p;
|
2001-12-30 00:15:25 +00:00
|
|
|
|
|
|
|
|
// Alocate and store private data
|
2006-04-11 17:54:58 +00:00
|
|
|
p = (PrivateData *) malloc(sizeof(PrivateData));
|
|
|
|
|
if (p == NULL)
|
2001-12-30 00:15:25 +00:00
|
|
|
return -1;
|
2006-04-11 17:54:58 +00:00
|
|
|
if (drvthis->store_private_ptr(drvthis, p) < 0)
|
2001-12-30 00:15:25 +00:00
|
|
|
return -1;
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
// initialize private data
|
|
|
|
|
p->fd = -1;
|
|
|
|
|
p->cellheight = 8;
|
|
|
|
|
p->cellwidth = 6;
|
|
|
|
|
|
2001-12-30 00:15:25 +00:00
|
|
|
(... continue with the rest of your init routine)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
You retrieve this private data pointer by adding the following code to the
|
|
|
|
|
beginning of your functions:
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
PrivateData *p = (PrivateData *) drvthis->private_data;
|
2001-12-30 00:15:25 +00:00
|
|
|
|
|
|
|
|
Then you can access your data like:
|
2006-04-11 17:54:58 +00:00
|
|
|
|
|
|
|
|
p->framebuf
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2001-10-16 19:38:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FUNCTIONS IN DETAIL
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
int (*init) (Driver *drvthis, char *args);
|
2001-10-16 19:38:07 +00:00
|
|
|
// The init function
|
|
|
|
|
// Starts up the LCD, initializes all vars. Allocates private data space
|
|
|
|
|
// and stores the pointer by calling store_private_ptr();
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*close) (Driver *drvthis);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Shuts down the connection with the LCD.
|
2001-12-30 00:15:25 +00:00
|
|
|
// Called just before unloading the driver.
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
int (*width) (Driver *drvthis);
|
2001-11-29 14:02:40 +00:00
|
|
|
// Get the screen width.
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
int (*height) (Driver *drvthis);
|
2001-11-29 14:02:40 +00:00
|
|
|
// Get the screen height.
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*clear) (Driver *drvthis);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Clears the framebuffer
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*flush) (Driver *drvthis);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Flushes the framebuffer to the LCD.
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*string) (Driver *drvthis, int x, int y, char *str);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Places a string in the framebuffer
|
|
|
|
|
// All coordinates are 1-based, (1,1) is top left.
|
2001-12-30 00:15:25 +00:00
|
|
|
// Driver should check for overflows
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*chr) (Driver *drvthis, int x, int y, char c);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Places a char in the framebuffer
|
2001-12-30 00:15:25 +00:00
|
|
|
// Driver should check for overflows
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*vbar) (Driver *drvthis, int x, int len);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Draws a vertical bar at horizontal position x and with length len.
|
|
|
|
|
// init_vbar will be called once before this functions.
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*hbar) (Driver *drvthis, int x, int y, int len);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Draws a horizontal bar at position x,y and with length len.
|
|
|
|
|
// init_hbar will be called once before this functions.
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*num) (Driver *drvthis, int x, int num);
|
|
|
|
|
// Displays a big number at horizontal position x.
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*heartbeat) (Driver *drvthis, int type);
|
|
|
|
|
// Sets the heartbeat to the indicated type: 0=off 1=graph1 2=graph2
|
|
|
|
|
//HEARTBEAT_ON to say that we want to display/refresh the heartbeat.
|
|
|
|
|
//The driver choose how to do it. See MtxOrb.c"
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-12 09:24:17 +00:00
|
|
|
void (*icon) (Driver *drvthis, int x, int y, int icon);
|
|
|
|
|
// draw named icon at position (x,y)
|
|
|
|
|
|
|
|
|
|
void (*cursor) (Driver *drvthis, int x, int y, int type);
|
|
|
|
|
// set cursor type and move it to position (x,y)
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
int (*get_contrast) (Driver *drvthis);
|
|
|
|
|
// Gets the contrast from the driver.
|
|
|
|
|
// the value returned is in the ramnge 0 - 1000
|
|
|
|
|
// Many displays do not support software setting of contrast.
|
|
|
|
|
|
|
|
|
|
void (*set_contrast) (Driver *drvthis, int contrast);
|
|
|
|
|
// Sets the contrast to the given value. Values should be 0 to 1000.
|
|
|
|
|
// Many displays do not support software setting of contrast.
|
|
|
|
|
|
|
|
|
|
int (*get_brightness) (Driver *drvthis, int state);
|
|
|
|
|
// Get the brightness for the given backlight state.
|
|
|
|
|
// Returned values are in the range from 0 - 1000.
|
|
|
|
|
// Many displays do not support software setting of contrast.
|
|
|
|
|
|
|
|
|
|
void (*set_brightness) (Driver *drvthis, int state, int int brightness);
|
2006-04-12 08:12:13 +00:00
|
|
|
// Sets the contrast to the given value. Values should be 0 to 1000.
|
2001-10-16 19:38:07 +00:00
|
|
|
// Many displays do not support software setting of contrast.
|
2001-12-30 00:15:25 +00:00
|
|
|
// Use -1 to get the current value returned.
|
2001-10-16 19:38:07 +00:00
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*backlight) (Driver *drvthis, int state);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Sets the backlight to brightness 'on'.
|
|
|
|
|
// Often hardware can only support on and off, in that case any value
|
|
|
|
|
// of on>0 will switch the backlight on.
|
|
|
|
|
|
2006-04-11 17:54:58 +00:00
|
|
|
void (*output) (Driver *drvthis, int state);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Sets the output value. Some displays/wirings have a general purpose
|
|
|
|
|
// output, which can be controlled by calling this function. See the
|
|
|
|
|
// 'output' command in the 'widget language'.
|
|
|
|
|
|
2006-04-12 08:12:13 +00:00
|
|
|
const char *(*get_key) (Driver *drvthis);
|
2001-10-16 19:38:07 +00:00
|
|
|
// Checks if a key has been pressed on the device.
|
|
|
|
|
// Returns NULL for "no key pressed", or a string describing the pressd key.
|
|
|
|
|
// These characters should match the keypad-layout.
|
|
|
|
|
|
2006-04-12 08:12:13 +00:00
|
|
|
const char *(*get_info) (Driver *drvthis);
|
2001-12-30 00:15:25 +00:00
|
|
|
// Returns a string describing the driver and its features.
|
|
|
|
|
|
|
|
|
|
|
2001-10-16 19:38:07 +00:00
|
|
|
char (*config_get_bool) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, char default_value);
|
|
|
|
|
// Call to server. Retrieve a bool from the config file.
|
|
|
|
|
// Sectionname should be the name of the driver (as in the struct).
|
|
|
|
|
// If the key cannot be found, the default value will be returned.
|
|
|
|
|
// skip should be 0 usually, but if you want to retrieve multiple
|
|
|
|
|
// identical keys, then increase skip to get every next value.
|
|
|
|
|
|
|
|
|
|
int (*config_get_int) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, int default_value);
|
|
|
|
|
// Call to server. Retrieve an integer from the config file.
|
|
|
|
|
|
|
|
|
|
double (*config_get_float) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, double default_value);
|
|
|
|
|
// Call to server. Retrieve a float from the config file.
|
|
|
|
|
|
|
|
|
|
char *(*config_get_string) (char * sectionname, char * keyname,
|
|
|
|
|
int skip, char * default);
|
|
|
|
|
// Call to server. Retrieve a string from the config file.
|
|
|
|
|
// Fill result with a pointer to some available space. You can fill it
|
|
|
|
|
// with a default value. If the key is found, it will be overwritten
|
|
|
|
|
// with the value from the key.
|
2001-12-30 00:15:25 +00:00
|
|
|
// Note that you should always first copy the the returned string.
|
2001-10-16 19:38:07 +00:00
|
|
|
// It is in the address space of the server, and will be freed at the
|
2001-12-30 00:15:25 +00:00
|
|
|
// next call.
|
2001-10-16 19:38:07 +00:00
|
|
|
|
|
|
|
|
int config_has_section (char *sectionname);
|
|
|
|
|
// Returns wether a section exists. Does not need to be called prior
|
|
|
|
|
// to a call to a config_get_* function.
|
|
|
|
|
|
|
|
|
|
int config_has_key (char *sectionname, char *keyname);
|
|
|
|
|
// Returns the number of times a key exists. Does not need to be called
|
|
|
|
|
// prior to a call to a config_get_* function.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
First version, Joris Robijn, 20011016
|
2006-04-11 17:54:58 +00:00
|
|
|
Corrected and expanded, Peter Marschall 20060411
|
2001-10-16 19:38:07 +00:00
|
|
|
|