mirror of
https://github.com/snltty/linker.git
synced 2025-10-23 17:13:12 +08:00
16 lines
416 B
C#
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);
|
|
}
|
|
}
|