Files
linker/linker.libs/winapis/MSvcrt.cs
snltty 5d2754d6cb sync
2024-06-24 21:59:50 +08:00

16 lines
416 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Linker.Libs.Winapis
{
public static class MSvcrt
{
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = false)]
public static extern IntPtr memcpy(IntPtr dest, IntPtr src, int count);
}
}