1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00
This commit is contained in:
Brian Fiete 2025-01-17 11:53:05 -08:00
parent 609aef0b0f
commit efbc7699c9

View file

@ -66,12 +66,12 @@ namespace System
TempFileError = (int)Result.TempFileError TempFileError = (int)Result.TempFileError
} }
#if !BF_RUNTIME_DISABLE
[StaticHook(typeof(SelfOuter))] [StaticHook(typeof(SelfOuter))]
public static struct Hook public static struct Hook
{ {
} }
#if !BF_RUNTIME_DISABLE
[CallingConvention(.Stdcall), CLink] [CallingConvention(.Stdcall), CLink]
public static extern uint32 BfpSystem_TickCount(); public static extern uint32 BfpSystem_TickCount();
[CallingConvention(.Stdcall), CLink] [CallingConvention(.Stdcall), CLink]
@ -129,6 +129,7 @@ namespace System
[CallingConvention(.Stdcall), CLink] [CallingConvention(.Stdcall), CLink]
public static extern void* BfpTLS_GetValue(BfpTLS* tls); public static extern void* BfpTLS_GetValue(BfpTLS* tls);
#else #else
public typealias Hook = Self;
public static uint32 BfpSystem_TickCount() => Runtime.NotImplemented(); public static uint32 BfpSystem_TickCount() => Runtime.NotImplemented();