XFusion API v1.3.0
载入中...
搜索中...
未找到
xf_init_registry_rule.h
浏览该文件的文档.
1
16/* ==================== [Includes] ========================================== */
17
18#include "../xf_init_config_internal.h"
19
20/* ==================== [Defines] =========================================== */
21
22/* ==================== [Typedefs] ========================================== */
23
24/* ==================== [Global Prototypes] ================================= */
25
26/* ==================== [Macros] ============================================ */
27
28#undef XF_INIT_REGISTER
29
30#if defined(XF_INIT_REGISTRY_ACTION_DECLARE)
31# define XF_INIT_REGISTER(function) extern void __xf_init_registry_##function(void)
32#elif defined(XF_INIT_REGISTRY_ACTION_CALL)
33# define XF_INIT_REGISTER(function) __xf_init_registry_##function()
34#else
35# pragma message("Please define the action.")
36#endif
37
38#undef XF_INIT_REGISTRY_ACTION_DECLARE
39#undef XF_INIT_REGISTRY_ACTION_CALL
40
41#include XF_INIT_USER_REGISTRY_PATH