mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-27 00:49:39 +00:00
8382195feb
Added rudimentary UI to Silverlight and WPF platforms to enable disk selection at runtime. --HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4024459
32 lines
1009 B
C#
32 lines
1009 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
using System.Security.Permissions;
|
|
|
|
namespace Jellyfish.Library
|
|
{
|
|
[SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode = true)]
|
|
public static class MarshalHelpers
|
|
{
|
|
public static void FillMemory(IntPtr buffer, int bufferSize, byte value)
|
|
{
|
|
NativeMethods.FillMemory(buffer, (IntPtr)bufferSize, value);
|
|
}
|
|
|
|
public static void ZeroMemory(IntPtr buffer, int bufferSize)
|
|
{
|
|
NativeMethods.ZeroMemory(buffer, (IntPtr)bufferSize);
|
|
}
|
|
|
|
[SuppressUnmanagedCodeSecurity]
|
|
private static class NativeMethods
|
|
{
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
public static extern void FillMemory(IntPtr destination, IntPtr length, byte fill);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
public static extern void ZeroMemory(IntPtr destination, IntPtr length);
|
|
}
|
|
}
|
|
}
|