Browse Source

Update raylib_api.* by CI

github-actions[bot] 1 year ago
parent
commit
a942a3bc70
4 changed files with 163 additions and 136 deletions
  1. 11 0
      parser/output/raylib_api.json
  2. 8 0
      parser/output/raylib_api.lua
  3. 140 135
      parser/output/raylib_api.txt
  4. 4 1
      parser/output/raylib_api.xml

+ 11 - 0
parser/output/raylib_api.json

@@ -4499,6 +4499,17 @@
         }
       ]
     },
+    {
+      "name": "IsFileNameValid",
+      "description": "Check if fileName is valid for the platform/OS",
+      "returnType": "bool",
+      "params": [
+        {
+          "type": "const char *",
+          "name": "fileName"
+        }
+      ]
+    },
     {
       "name": "LoadDirectoryFiles",
       "description": "Load directory filepaths",

+ 8 - 0
parser/output/raylib_api.lua

@@ -4058,6 +4058,14 @@ return {
         {type = "const char *", name = "path"}
       }
     },
+    {
+      name = "IsFileNameValid",
+      description = "Check if fileName is valid for the platform/OS",
+      returnType = "bool",
+      params = {
+        {type = "const char *", name = "fileName"}
+      }
+    },
     {
       name = "LoadDirectoryFiles",
       description = "Load directory filepaths",

File diff suppressed because it is too large
+ 140 - 135
parser/output/raylib_api.txt


+ 4 - 1
parser/output/raylib_api.xml

@@ -670,7 +670,7 @@
             <Param type="unsigned int" name="frames" desc="" />
         </Callback>
     </Callbacks>
-    <Functions count="562">
+    <Functions count="563">
         <Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
             <Param type="int" name="width" desc="" />
             <Param type="int" name="height" desc="" />
@@ -1075,6 +1075,9 @@
         <Function name="IsPathFile" retType="bool" paramCount="1" desc="Check if a given path is a file or a directory">
             <Param type="const char *" name="path" desc="" />
         </Function>
+        <Function name="IsFileNameValid" retType="bool" paramCount="1" desc="Check if fileName is valid for the platform/OS">
+            <Param type="const char *" name="fileName" desc="" />
+        </Function>
         <Function name="LoadDirectoryFiles" retType="FilePathList" paramCount="1" desc="Load directory filepaths">
             <Param type="const char *" name="dirPath" desc="" />
         </Function>

Some files were not shown because too many files changed in this diff