~ctwm/ctwm/trunk

510.1.2 by Matthew Fuller
Break the functions used for parsing/applying the various workspace
1
/*
2
 * Routines using in setting up the config for workspace stuff.
3
 */
4
#ifndef _CTWM_WORKSPACE_CONFIG_H
5
#define _CTWM_WORKSPACE_CONFIG_H
6
7
void AddWorkSpace(const char *name,
8
                  const char *background, const char *foreground,
9
                  const char *backback,   const char *backfore,
10
                  const char *backpix);
510.1.3 by Matthew Fuller
const-ify these func args.
11
void WMapCreateCurrentBackGround(const char *border,
12
                                 const char *background, const char *foreground,
13
                                 const char *pixmap);
14
void WMapCreateDefaultBackGround(const char *border,
15
                                 const char *background, const char *foreground,
16
                                 const char *pixmap);
510.1.2 by Matthew Fuller
Break the functions used for parsing/applying the various workspace
17
18
#endif /* _CTWM_WORKSPACE_CONFIG_H */