Skip to content

Commit

Permalink
Create NativeMethods.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
NYAN-x-CAT committed Oct 16, 2023
1 parent 9049ccc commit b8101ba
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions AsyncRAT-C#/Server/StreamLibrary/NativeMethods.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace Server.StreamLibrary
{
public static class NativeMethods
{
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern unsafe int memcmp(byte* ptr1, byte* ptr2, uint count);

[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern int memcpy(IntPtr dst, IntPtr src, uint count);

[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern unsafe int memcpy(void* dst, void* src, uint count);
}
}

0 comments on commit b8101ba

Please sign in to comment.