OnTopReplica/src/PostInstaller/PropertyKey.cs
2018-04-10 23:34:54 +02:00

21 lines
422 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace PostInstaller {
[StructLayout(LayoutKind.Sequential)]
public struct PropertyKey {
public PropertyKey(Guid formatId, uint propertyId) {
fmtid = formatId;
pid = propertyId;
}
public Guid fmtid;
public uint pid;
}
}