| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Runtime.InteropServices; | |
| namespace MovieTube.Viewer | |
| { | |
| internal class NativeMethods | |
| { | |
| public const int HWND_BROADCAST = 0xffff; | |
| public static readonly int WM_SHOWME = RegisterWindowMessage("WM_SHOWME"); | |
| [] | |
| public static extern bool PostMessage(IntPtr hwnd, int msg, IntPtr wparam, IntPtr lparam); | |
| [] | |
| public static extern int RegisterWindowMessage(string message); | |
| } | |
| } | |