Added documentation generation in .gitlab-ci.yml

This commit is contained in:
Patrix
2024-03-04 01:02:39 +01:00
parent bc331091ab
commit 989a1a0a8b
7 changed files with 129 additions and 16 deletions

View File

@@ -1,5 +1,17 @@
#include "sqapi.h"
/* squirreldoc (func)
*
* This is an entry point for the module.
*
* @version 0.1
* @side shared
* @name sqmodule_load
* @param (HSQUIRRELVM) vm the squirrel vm.
* @param (HSQAPI) api the api ptr containing all of the squirrel functions.
* @return (int) returns a function status.
*
*/
extern "C" SQRESULT SQRAT_API sqmodule_load(HSQUIRRELVM vm, HSQAPI api)
{
SqModule::Initialize(vm, api);