mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-24 13:45:37 +03:00
parent
75530c6bef
commit
d959dafae0
@ -71,9 +71,9 @@ void InstallVTable()
|
||||
ThisVTable.InternalRulesFailedToRespond db = ( _ ) => InternalOnRulesFailedToRespond();
|
||||
ThisVTable.InternalRulesRefreshComplete dc = ( _ ) => InternalOnRulesRefreshComplete();
|
||||
|
||||
RulesRespondPin = GCHandle.Alloc( da, GCHandleType.Pinned );
|
||||
FailedRespondPin = GCHandle.Alloc( db, GCHandleType.Pinned );
|
||||
CompletePin = GCHandle.Alloc( dc, GCHandleType.Pinned );
|
||||
RulesRespondPin = GCHandle.Alloc( da );
|
||||
FailedRespondPin = GCHandle.Alloc( db );
|
||||
CompletePin = GCHandle.Alloc( dc );
|
||||
|
||||
var t = new ThisVTable()
|
||||
{
|
||||
@ -93,9 +93,9 @@ void InstallVTable()
|
||||
StdVTable.InternalRulesFailedToRespond db = InternalOnRulesFailedToRespond;
|
||||
StdVTable.InternalRulesRefreshComplete dc = InternalOnRulesRefreshComplete;
|
||||
|
||||
RulesRespondPin = GCHandle.Alloc( da, GCHandleType.Pinned );
|
||||
FailedRespondPin = GCHandle.Alloc( db, GCHandleType.Pinned );
|
||||
CompletePin = GCHandle.Alloc( dc, GCHandleType.Pinned );
|
||||
RulesRespondPin = GCHandle.Alloc( da );
|
||||
FailedRespondPin = GCHandle.Alloc( db );
|
||||
CompletePin = GCHandle.Alloc( dc );
|
||||
|
||||
var t = new StdVTable()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user