mirror of
https://github.com/snltty/linker.git
synced 2025-10-16 22:21:16 +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);
|
|
}
|
|
}
|