1 --- a/include/xplc/module.h
2 +++ b/include/xplc/module.h
4 * XPLC module magic number. This is to ensure that it is in fact a
5 * valid XPLC module that has been loaded.
10 * The XPLC module ABI version that this module conforms to. This
11 * should always be the first member of the XPLC_ModuleInfo
12 * structure, as the meaning of the following members depend on it.
14 - unsigned int version_major;
15 + signed int version_major;
17 * The XPLC module ABI sub-version that this module conforms
18 * to. This is used for optional and backward-compatible changes in
21 - unsigned int version_minor;
22 + signed int version_minor;
25 * Description string for the module.