2008-03-05 09:52:00 -05:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
namespace System.Runtime.InteropServices
|
|
|
|
{
|
2008-03-05 09:52:00 -05:00
|
|
|
public sealed class Marshal
|
|
|
|
{
|
|
|
|
[RequiredByBartok]
|
|
|
|
public static IntPtr AllocHGlobal(int cb);
|
|
|
|
[RequiredByBartok]
|
|
|
|
public static void FreeHGlobal(IntPtr hglobal);
|
|
|
|
|
|
|
|
public static int SizeOf(Object structure);
|
|
|
|
public static int SizeOf(Type t);
|
|
|
|
}
|
|
|
|
}
|