mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-23 19:30:59 +00:00
bc4caaf2b1
--HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4046550
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
|
|
namespace Jellyfish.Library
|
|
{
|
|
public static class MarshalHelpers
|
|
{
|
|
[SecurityCritical]
|
|
public static void FillMemory(IntPtr buffer, int bufferSize, byte value)
|
|
{
|
|
NativeMethods.FillMemory(buffer, (IntPtr)bufferSize, value);
|
|
}
|
|
|
|
[SecurityCritical]
|
|
public static void ZeroMemory(IntPtr buffer, int bufferSize)
|
|
{
|
|
NativeMethods.ZeroMemory(buffer, (IntPtr)bufferSize);
|
|
}
|
|
|
|
[SecurityCritical]
|
|
[SuppressUnmanagedCodeSecurity]
|
|
private static class NativeMethods
|
|
{
|
|
[SuppressMessage("Microsoft.Security", "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage")]
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
public static extern void FillMemory(IntPtr destination, IntPtr length, byte fill);
|
|
|
|
[SuppressMessage("Microsoft.Security", "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage")]
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
public static extern void ZeroMemory(IntPtr destination, IntPtr length);
|
|
}
|
|
}
|
|
}
|