mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
12 lines
255 B
C#
12 lines
255 B
C#
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Size = 24)]
|
|
[NativeCppClass]
|
|
internal unsafe struct tagCOPYDATASTRUCT
|
|
{
|
|
public ulong* dwData;
|
|
public uint cbData;
|
|
public void* lpData;
|
|
}
|