comparison doxygen/page-howto-initialization.c @ 147:b386d25832c8

doc: use new nomenclature, closes #2497
author David Demelier <markand@malikania.fr>
date Thu, 15 Oct 2020 09:21:04 +0200
parents 789b23e01f52
children
comparison
equal deleted inserted replaced
146:7d7ea7a9cf50 147:b386d25832c8
17 * The following table summarize the functions to be used at the beginning and 17 * The following table summarize the functions to be used at the beginning and
18 * the end of your game. 18 * the end of your game.
19 * 19 *
20 * | System | Init function | Close function | Remarks | 20 * | System | Init function | Close function | Remarks |
21 * |---------|------------------|--------------------|------------------------| 21 * |---------|------------------|--------------------|------------------------|
22 * | General | sys_init | sys_finish | Required for most API | 22 * | General | sys_init | sys_finish | Required for most API |
23 * | Window | window_init | window_finish | Required by some parts | 23 * | Window | window_init | window_finish | Required by some parts |
24 * 24 *
25 * All init functions set an error code if any and you're encouraged to test the 25 * All init functions set an error code if any and you're encouraged to test the
26 * result and check the error if any. 26 * result and check the error if any.
27 * 27 *
28 * \section example Example 28 * \section example Example