1config_is_hooked(3) Allegro manual config_is_hooked(3)
2
3
4
6 config_is_hooked - Tells if a config section has custom hooks. Allegro
7 game programming library.
8
10 #include <allegro.h>
11
12
13 int config_is_hooked(const char *section);
14
16 Returns TRUE if the specified config section has been hooked. Example:
17
18 if (config_is_hooked("high_scores")) {
19 hook_config_section("high_scores, NULL, NULL, NULL);
20 }
21
22
24 hook_config_section(3)
25
26
27
28Allegro version 4.2.3 config_is_hooked(3)