another hle implements, especially for mutex calls

This commit is contained in:
ParantezTech
2026-03-12 18:01:42 +03:00
parent 73ae502e09
commit 028494a83b
12 changed files with 1133 additions and 252 deletions
+20
View File
@@ -15,6 +15,11 @@ public enum OrbisGen2Result : int
/// </summary>
ORBIS_GEN2_OK = 0,
/// <summary>
/// Indicates that the operation is not permitted for the calling thread.
/// </summary>
ORBIS_GEN2_ERROR_PERMISSION_DENIED = unchecked((int)0x80020001),
/// <summary>
/// Indicates that the requested export was not found.
/// </summary>
@@ -30,11 +35,26 @@ public enum OrbisGen2Result : int
/// </summary>
ORBIS_GEN2_ERROR_ALREADY_EXISTS = unchecked((int)0x80020004),
/// <summary>
/// Indicates that completing the operation would deadlock.
/// </summary>
ORBIS_GEN2_ERROR_DEADLOCK = unchecked((int)0x8002000B),
/// <summary>
/// Indicates that the target resource is busy.
/// </summary>
ORBIS_GEN2_ERROR_BUSY = unchecked((int)0x80020010),
/// <summary>
/// Indicates that behavior is recognized but not implemented yet.
/// </summary>
ORBIS_GEN2_ERROR_NOT_IMPLEMENTED = unchecked((int)0x8002FFFF),
/// <summary>
/// Indicates that the operation timed out.
/// </summary>
ORBIS_GEN2_ERROR_TIMED_OUT = unchecked((int)0x8002003C),
/// <summary>
/// Indicates that memory access failed.
/// </summary>