OnTopReplica/OnTopReplica/Native/WindowsSevenMethods.cs
Lorenz Cuno Klopfenstein 38366ced96 Added OnTopReplica logo.
2010-10-15 19:12:58 +02:00

21 lines
574 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace OnTopReplica.Native {
static class WindowsSevenMethods {
[DllImport("shell32.dll")]
internal static extern void SetCurrentProcessExplicitAppUserModelID(
[MarshalAs(UnmanagedType.LPWStr)] string AppID);
[DllImport("shell32.dll")]
internal static extern void GetCurrentProcessExplicitAppUserModelID(
[Out(), MarshalAs(UnmanagedType.LPWStr)] out string AppID);
}
}