-
Notifications
You must be signed in to change notification settings - Fork 57
/
astrology.h
41 lines (34 loc) · 843 Bytes
/
astrology.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
#ifndef __ASTROLOGY_H__
#define __ASTROLOGY_H__
#ifdef __cplusplus
extern "C" {
#endif
extern int always_show_astro_details;
/*!
* \ingroup astrology_window
* \brief Displays the astrology window.
*
* Displays the astrology window. The window will be created if it was not used before.
*
* \callgraph
*/
void display_astrology_window(const char * raw_text);
/*!
* \brief Check for astrology messages
*
* Check if a text message from the server is an astrology message,
* and if so, update and show the astrology window.
*
* \param RawText The text to check.
* \return 1 if the message is an astrology message, 0 otherwise.
*/
int is_astrology_message (const char* RawText);
/*!
* \brief Free astro window memeory
*
*/
void free_astro_buffer();
#ifdef __cplusplus
} // extern "C"
#endif
#endif //__ASTROLOGY_H__