-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrule.h
53 lines (43 loc) · 1.49 KB
/
rule.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
///
/// @file rule.h @brief window/client rules header file
///
/// Copyright (c) 2009, 2010 by Lutz Sammer. All Rights Reserved.
///
/// Contributor(s):
///
/// License: AGPLv3
///
/// This program is free software: you can redistribute it and/or modify
/// it under the terms of the GNU Affero General Public License as
/// published by the Free Software Foundation, either version 3 of the
/// License.
///
/// This program is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU Affero General Public License for more details.
///
/// $Id$
//////////////////////////////////////////////////////////////////////////////
/// @addtogroup rule
/// @{
//////////////////////////////////////////////////////////////////////////////
// Prototypes
//////////////////////////////////////////////////////////////////////////////
/// Apply rules to new client.
extern void RulesApplyNewClient(Client *, int);
/// Apply rules for delete client.
extern void RulesApplyDelClient(const Client *);
/// Dummy for initialize the rule module
#define RuleInit()
/// Cleanup the rule module.
extern void RuleExit(void);
/// Parse client rules configuration.
extern void RuleConfig(const Config *);
#ifndef USE_RULE
/// Dummy for cleanup the rule module.
#define RuleExit(void)
/// Dummy for parse client rules configuration.
#define RuleConfig(config)
#endif
/// @}