Update raylib_api.* by CI
Some checks failed
Android / build (arm64) (push) Has been cancelled
Android / build (x86_64) (push) Has been cancelled
CMakeBuilds / Windows Build (push) Has been cancelled
CMakeBuilds / Linux Build (push) Has been cancelled
Linux / build (aarch64, arm64, /usr/bin, 64, ubuntu-24.04-arm) (push) Has been cancelled
Linux / build (i386, i386, /usr/bin, 32, ubuntu-latest) (push) Has been cancelled
Linux / build (x86_64, amd64, /usr/bin, 64, ubuntu-latest) (push) Has been cancelled
Linux Examples / build (push) Has been cancelled
macOS / build (push) Has been cancelled
Parse raylib API / build (push) Has been cancelled
WebAssembly / build (push) Has been cancelled
Windows / build (ARM64, ARM64, msvc16, winarm64) (push) Has been cancelled
Windows / build (i686, pe-i386, mingw-w64, win32) (push) Has been cancelled
Windows / build (x64, x64, msvc16, win64) (push) Has been cancelled
Windows / build (x86, Win32, msvc16, win32) (push) Has been cancelled
Windows / build (x86_64, pe-x86-64, mingw-w64, win64) (push) Has been cancelled
Windows Examples / build (push) Has been cancelled
CodeQL / Analyze (cpp) (push) Has been cancelled

This commit is contained in:
github-actions[bot] 2025-08-08 21:09:03 +00:00
parent 5daeffd91b
commit 60826855c4
4 changed files with 4 additions and 4 deletions

View File

@ -4438,7 +4438,7 @@
},
{
"name": "IsFileExtension",
"description": "Check file extension (including point: .png, .wav)",
"description": "Check file extension (recommended include point: .png, .wav)",
"returnType": "bool",
"params": [
{

View File

@ -4027,7 +4027,7 @@ return {
},
{
name = "IsFileExtension",
description = "Check file extension (including point: .png, .wav)",
description = "Check file extension (recommended include point: .png, .wav)",
returnType = "bool",
params = {
{type = "const char *", name = "fileName"},

View File

@ -1670,7 +1670,7 @@ Function 125: DirectoryExists() (1 input parameters)
Function 126: IsFileExtension() (2 input parameters)
Name: IsFileExtension
Return type: bool
Description: Check file extension (including point: .png, .wav)
Description: Check file extension (recommended include point: .png, .wav)
Param[1]: fileName (type: const char *)
Param[2]: ext (type: const char *)
Function 127: GetFileLength() (1 input parameters)

View File

@ -1054,7 +1054,7 @@
<Function name="DirectoryExists" retType="bool" paramCount="1" desc="Check if a directory path exists">
<Param type="const char *" name="dirPath" desc="" />
</Function>
<Function name="IsFileExtension" retType="bool" paramCount="2" desc="Check file extension (including point: .png, .wav)">
<Function name="IsFileExtension" retType="bool" paramCount="2" desc="Check file extension (recommended include point: .png, .wav)">
<Param type="const char *" name="fileName" desc="" />
<Param type="const char *" name="ext" desc="" />
</Function>