mirror of
https://github.com/XWine1/VdCallDump.git
synced 2026-07-24 12:32:35 -07:00
13 lines
331 B
C#
13 lines
331 B
C#
using System.Runtime.InteropServices;
|
|
using System.Runtime.Versioning;
|
|
using TerraFX.Interop.Windows;
|
|
|
|
namespace VdCallDump;
|
|
|
|
[SupportedOSPlatform("windows")]
|
|
internal static unsafe partial class Dia2
|
|
{
|
|
[LibraryImport("msdia140")]
|
|
public static partial HRESULT DllGetClassObject(Guid* rclsid, Guid* riid, void** ppv);
|
|
}
|