You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
639 B

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Platform
{
/// <summary>
/// Function prototype type definition for functions that release memory.
///
/// When the SDK is done with memory that has been allocated by a custom allocator passed to <see cref="PlatformInterface.Initialize" />, it will call the corresponding memory release function.
/// </summary>
[System.Runtime.InteropServices.UnmanagedFunctionPointer(Config.LibraryCallingConvention)]
public delegate void ReleaseMemoryFunc(System.IntPtr pointer);
}