~ubuntu-branches/ubuntu/warty/matchbox/warty

« back to all changes in this revision

Viewing changes to src/misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2004-02-16 01:27:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040216012737-fakbjc1vs72vcz2w
Tags: 1:0.6.2-1.1
* Non-Maintainer Upload.
* Add -fPIC to libmb.so linker flags. (Closes: #227920)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <X11/Xatom.h>
29
29
#include <X11/cursorfont.h>
30
30
 
31
 
#ifdef USE_XFT
32
 
#include <X11/Xft/Xft.h>
33
 
#endif
34
 
 
35
31
#include "structs.h"
36
32
#include "wm.h"
37
33
#include "main_client.h"
38
 
 
 
34
#include "../config.h"
39
35
 
40
36
void err(const char *fmt, ...);
41
 
void dbg(const char *fmt, ...);
42
 
int max(int n, ...);
 
37
 
 
38
#ifndef HAVE_STRSEP
 
39
char *strsep(char **stringp, char *delim);
 
40
#endif
 
41
 
43
42
void fork_exec(char *cmd);
 
43
 
44
44
void sig_handler(int signal);
 
45
 
45
46
int handle_xerror(Display *dpy, XErrorEvent *e);
 
47
 
46
48
int ignore_xerror(Display *dpy, XErrorEvent *e);
47
 
void dump(client *c);
48
 
void dump_clients(wm* w);
49
 
#ifdef USE_XFT
50
 
int max_xstringChars(wm *w, int *width, char *txt, XftFont *font_info);
51
 
#else
52
 
int max_xstringChars(wm *w, int *width, char *txt, XFontStruct* font_info);
 
49
 
 
50
int  mwm_get_decoration_flags(Wm *w, Window win);
 
51
 
53
52
#endif
54
53
 
55
 
#endif _MISC_H_
56