Namespace: Tzu_Engine.Physic
Assembly: Tzu_Engine (in Tzu_Engine.dll)

Syntax

Visual Basic (Declaration)
<UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)>
Public Delegate Function TZPhysics.AllocMemory( _ 
   ByVal pSizeInBytes As Integer _ 
) As IntPtr
C#
[UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
public delegate IntPtr TZPhysics.AllocMemory(
   int pSizeInBytes
)
C++
[UnmanagedFunctionPointerAttribute(CallingConvention::Cdecl)]
public delegate IntPtr TZPhysics.AllocMemory(
   int pSizeInBytes
)
J#
/** delegate */
/** @attribute UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl) */
public delegate IntPtr TZPhysics.AllocMemory(
   int pSizeInBytes
)
JScript
JScript suports the use of delegates, but not the declaration of new ones.

See Also