File: compmod\System\Runtime\InteropServices\ComTypes\STGMEDIUM.cs
Project: ndp\fx\src\System.csproj (System)
//------------------------------------------------------------------------------
// <copyright file="STGMEDIUM.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Runtime.InteropServices.ComTypes {
 
    using System;
 
    /// <devdoc>
    /// </devdoc>
    public struct STGMEDIUM {
        public TYMED  tymed;
        public IntPtr unionmember;
        [MarshalAs(UnmanagedType.IUnknown)] 
        public object pUnkForRelease;
    }
}