IsFileNameValid method added
This commit is contained in:
parent
3504c47b7a
commit
cf49aeae19
1 changed files with 4 additions and 0 deletions
|
|
@ -627,6 +627,10 @@ public static unsafe partial class Raylib
|
||||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern CBool IsPathFile(sbyte* path);
|
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>
|
/// <summary>Change working directory, return true on success</summary>
|
||||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern CBool ChangeDirectory(sbyte* dir);
|
public static extern CBool ChangeDirectory(sbyte* dir);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue