ATI.ADL.ADL.ADL_Main_Memory_Alloc_ C# (CSharp) Метод

ADL_Main_Memory_Alloc_() приватный статический Метод

Build in memory allocation function
private static ADL_Main_Memory_Alloc_ ( int size ) : IntPtr
size int input size
Результат System.IntPtr
        private static IntPtr ADL_Main_Memory_Alloc_(int size)
        {
            IntPtr result = Marshal.AllocCoTaskMem(size);
            return result;
        }