Example #1
0
        private IntPtr convertColumnSetToIntPtr(SuperLogTableColumnSet colSet)
        {
            VMDIR_SUPERLOG_TABLE_COLUMN_SET colSetStruct = colSet.ToStruct();
            IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(VMDIR_SUPERLOG_TABLE_COLUMN_SET)));

            Marshal.StructureToPtr(colSetStruct, ptr, false);
            return(ptr);
        }
 private IntPtr convertColumnSetToIntPtr(SuperLogTableColumnSet colSet)
 {
     VMDIR_SUPERLOG_TABLE_COLUMN_SET colSetStruct = colSet.ToStruct();
     IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(VMDIR_SUPERLOG_TABLE_COLUMN_SET)));
     Marshal.StructureToPtr(colSetStruct, ptr, false);
     return ptr;
 }