ATI.ADL.ADL.ADL_Main_Memory_Alloc_ C# (CSharp) Méthode

ADL_Main_Memory_Alloc_() private static méthode

Build in memory allocation function
private static ADL_Main_Memory_Alloc_ ( int size ) : IntPtr
size int input size
Résultat System.IntPtr
        private static IntPtr ADL_Main_Memory_Alloc_(int size)
        {
            IntPtr result = Marshal.AllocCoTaskMem(size);
            return result;
        }