rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2026-01-16 03:05:23 +00:00
parent cd5d5c52f6
commit 9cf4d9f247
4 changed files with 4 additions and 16 deletions

View File

@ -1324,11 +1324,6 @@
"name": "FilePathList",
"description": "File path list",
"fields": [
{
"type": "unsigned int",
"name": "capacity",
"description": "Filepaths max entries"
},
{
"type": "unsigned int",
"name": "count",

View File

@ -1324,11 +1324,6 @@ return {
name = "FilePathList",
description = "File path list",
fields = {
{
type = "unsigned int",
name = "capacity",
description = "Filepaths max entries"
},
{
type = "unsigned int",
name = "count",

View File

@ -540,12 +540,11 @@ Struct 31: VrStereoConfig (8 fields)
Field[6]: float[2] rightScreenCenter // VR right screen center
Field[7]: float[2] scale // VR distortion scale
Field[8]: float[2] scaleIn // VR distortion scale in
Struct 32: FilePathList (3 fields)
Struct 32: FilePathList (2 fields)
Name: FilePathList
Description: File path list
Field[1]: unsigned int capacity // Filepaths max entries
Field[2]: unsigned int count // Filepaths entries count
Field[3]: char ** paths // Filepaths entries
Field[1]: unsigned int count // Filepaths entries count
Field[2]: char ** paths // Filepaths entries
Struct 33: AutomationEvent (3 fields)
Name: AutomationEvent
Description: Automation event

View File

@ -280,8 +280,7 @@
<Field type="float[2]" name="scale" desc="VR distortion scale" />
<Field type="float[2]" name="scaleIn" desc="VR distortion scale in" />
</Struct>
<Struct name="FilePathList" fieldCount="3" desc="File path list">
<Field type="unsigned int" name="capacity" desc="Filepaths max entries" />
<Struct name="FilePathList" fieldCount="2" desc="File path list">
<Field type="unsigned int" name="count" desc="Filepaths entries count" />
<Field type="char **" name="paths" desc="Filepaths entries" />
</Struct>