Watch
2
0
Fork
You've already forked raylib-cs
0

IsFileNameValid method added

This commit is contained in:
JupiterRider 2024-12-03 20:24:18 +01:00
commit cf49aeae19

View file

@ -627,6 +627,10 @@ public static unsafe partial class Raylib
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern CBool IsPathFile(sbyte* path);
/// <summary>Check if fileName is valid for the platform/OS</summary>
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern CBool IsFileNameValid(sbyte* fileName);
/// <summary>Change working directory, return true on success</summary>
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern CBool ChangeDirectory(sbyte* dir);