~ubuntu-branches/ubuntu/lucid/compiz-fusion-plugins-extra/lucid

« back to all changes in this revision

Viewing changes to src/crashhandler/crashhandler_options.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2007-12-05 22:48:25 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20071205224825-yhfs0zm2evj7ca3x
Tags: 0.6.99+git20071127-0ubuntu1
new git HEAD snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#ifndef _CRASHHANDLER_OPTIONS_H
13
13
#define _CRASHHANDLER_OPTIONS_H
14
14
 
15
 
#ifndef _CRASHHANDLER_OPTIONS_INTERNAL
16
 
#define getCompPluginInfo crashhandlerOptionsGetCompPluginInfo
17
 
#endif
18
 
 
19
 
#ifdef  __cplusplus
20
 
extern "C" {
21
 
#endif
22
 
 
23
 
CompPluginVTable *crashhandlerOptionsGetCompPluginInfo (void);
 
15
#include <compiz-common.h>
 
16
 
 
17
COMPIZ_BEGIN_DECLS
 
18
 
 
19
CompPluginVTable * getCompPluginInfo (void);
24
20
 
25
21
typedef enum
26
22
{
27
23
    CrashhandlerDisplayOptionEnabled,
 
24
    CrashhandlerDisplayOptionDirectory,
28
25
    CrashhandlerDisplayOptionStartWm,
29
26
    CrashhandlerDisplayOptionWmCmd,
30
27
    CrashhandlerDisplayOptionNum
47
44
CompOption *     crashhandlerGetEnabledOption (CompDisplay *d);
48
45
void             crashhandlerSetEnabledNotify (CompDisplay *d, crashhandlerDisplayOptionChangeNotifyProc notify);
49
46
            
 
47
char *           crashhandlerGetDirectory (CompDisplay *d);
 
48
CompOption *     crashhandlerGetDirectoryOption (CompDisplay *d);
 
49
void             crashhandlerSetDirectoryNotify (CompDisplay *d, crashhandlerDisplayOptionChangeNotifyProc notify);
 
50
            
50
51
Bool             crashhandlerGetStartWm (CompDisplay *d);
51
52
CompOption *     crashhandlerGetStartWmOption (CompDisplay *d);
52
53
void             crashhandlerSetStartWmNotify (CompDisplay *d, crashhandlerDisplayOptionChangeNotifyProc notify);
55
56
CompOption *     crashhandlerGetWmCmdOption (CompDisplay *d);
56
57
void             crashhandlerSetWmCmdNotify (CompDisplay *d, crashhandlerDisplayOptionChangeNotifyProc notify);
57
58
            
58
 
#ifdef  __cplusplus
59
 
}
60
 
#endif
 
59
COMPIZ_END_DECLS
61
60
 
62
61
#endif