diff doxygen/page-howto-initialization.c @ 97:58133933ea17

window: expose some data to avoid functions
author David Demelier <markand@malikania.fr>
date Mon, 30 Mar 2020 20:10:00 +0200
parents e82eca4f8606
children 789b23e01f52
line wrap: on
line diff
--- a/doxygen/page-howto-initialization.c	Mon Mar 30 20:05:00 2020 +0200
+++ b/doxygen/page-howto-initialization.c	Mon Mar 30 20:10:00 2020 +0200
@@ -17,10 +17,10 @@
  * The following table summarize the functions to be used at the beginning and
  * the end of your game.
  *
- * | System  | Init function    | Close function    | Remarks                |
- * |---------|------------------|-------------------|------------------------|
- * | General | \ref sys_init    | \ref sys_close    | Required for most API  |
- * | Window  | \ref window_init | \ref window_close | Required by some parts |
+ * | System  | Init function    | Close function     | Remarks                |
+ * |---------|------------------|--------------------|------------------------|
+ * | General | \ref sys_init    | \ref sys_finish    | Required for most API  |
+ * | Window  | \ref window_init | \ref window_finish | Required by some parts |
  *
  * All init functions set an error code if any and you're encouraged to test the
  * result and check the error if any.