~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to workmgr.h

  • Committer: Richard Levitte
  • Author(s): Claude Lecommandeur
  • Date: 2003-02-02 16:57:07 UTC
  • Revision ID: richard@levitte.org-20030202165707-iui8wsl36rsoqwpf
Tags: ctwm-1.2
CTWM version 1.2

Monotone-Parent: b3c7582e14387de7b1a24f0c48c00e8c1f9fbe52
Monotone-Revision: c2a6cbc82eb21a8c0e88685c2b2d50136fe1d772

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef _WORKMGR_
2
2
#define _WORKMGR_
3
3
 
 
4
#ifdef ultrix
 
5
#   define strdup(s) ((char*) strcpy ((char*) malloc (strlen (s) + 1), s))
 
6
#endif
 
7
 
4
8
void CreateWorkSpaceManager ();
5
9
void PaintWorkSpaceManager  ();
 
10
void SetButtonLabel         ();
6
11
 
7
12
extern int workSpaceManagerActive;
8
13