Skyld AV  0.6
On access virus scanning for Linux
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
notify.h
Go to the documentation of this file.
1 /*
2  * File: notify.h
3  *
4  * Copyright 2013 Heinrich Schuchardt <xypron.glpk@gmx.de>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19 
25 #ifndef NOTIFY_H
26 #define NOTIFY_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 const char *HELP_TEXT =
33  "Usage: skyldavnotify [OPTION]\n"
34  "Notification for Skyld AV on access virus scanner.\n\n"
35  " -h help\n"
36  " -v version\n\n"
37  "Licensed under the Apache License, Version 2.0.\n"
38  "Report errors to\n"
39  "Heinrich Schuchardt <xypron.glpk@gmx.de>\n";
40 
41 const char *VERSION_TEXT =
42  "Notification for Skyld AV on access virus scanner.\n\n"
43  "Copyright 2013 Heinrich Schuchardt <xypron.glpk@gmx.de>\n\n"
44  "Licensed under the Apache License, Version 2.0 (the\n"
45  "\"License\"); you may not use this file except in compliance\n"
46  "with the License. You may obtain a copy of the License at\n\n"
47  " http://www.apache.org/licenses/LICENSE-2.0\n\n"
48  "Unless required by applicable law or agreed to in writing,\n"
49  "software distributed under the License is distributed on an\n"
50  "\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\n"
51  "either express or implied. See the License for the specific\n"
52  "language governing permissions and limitations under the\n"
53  "License.\n";
54 
55 #ifdef __cplusplus
56 }
57 #endif
58 
59 #endif /* NOTIFY_H */
60 
const char * VERSION_TEXT
Definition: notify.h:41
const char * HELP_TEXT
Definition: notify.h:32