예제 #1
0
		private extern static bool Win32Shell_NotifyIcon(NotifyIconMessage dwMessage, ref NOTIFYICONDATA lpData);
예제 #2
0
        private static bool Shell_NotifyIcon(
			NotifyIconMessage dwMessage,
			byte[] lpData) { return true; }
예제 #3
0
 public static extern bool Shell_NotifyIcon(NotifyIconMessage message,
                                            NotifyIconData pnid);
예제 #4
0
파일: Shell32.cs 프로젝트: carterbuce/Mixer
 public static extern bool Shell_NotifyIconW(
     NotifyIconMessage message,
     ref NOTIFYICONDATAW pNotifyIconData);
예제 #5
0
		private extern static bool Shell_NotifyIcon(
			NotifyIconMessage dwMessage,
			byte[] lpData);
예제 #6
0
 public static bool SetIconData(ref NotifyIconData data, NotifyIconMessage message, NotifyIconFlags flags)
 {
     data.uFlags = flags;
     return(Native.Shell_NotifyIcon(message, ref data));
 }
예제 #7
0
 public static extern bool Shell_NotifyIcon(NotifyIconMessage message,
   NotifyIconData pnid);
예제 #8
0
파일: Native.cs 프로젝트: korewa/Ren
 public static extern bool Shell_NotifyIcon(
     NotifyIconMessage message,
     [In] ref NotifyIconData data);
예제 #9
0
 public static extern bool ShellNotifyIconW(NotifyIconMessage message, IntPtr data);
예제 #10
0
 private static bool Shell_NotifyIcon(
     NotifyIconMessage dwMessage,
     byte[] lpData)
 {
     return(true);
 }
예제 #11
0
 private extern static bool Shell_NotifyIcon(
     NotifyIconMessage dwMessage,
     byte[] lpData);
예제 #12
0
 public static extern bool ShellNotifyIcon(NotifyIconMessage message, Shell32Structures.NotifyIconData notifyIconData);