コード例 #1
0
ファイル: WindowsConsoleDriver.cs プロジェクト: raj581/Marvin
 extern static bool SetConsoleCursorInfo(IntPtr handle, ref ConsoleCursorInfo info);
コード例 #2
0
		extern static bool SetConsoleCursorInfo (IntPtr handle, ref ConsoleCursorInfo info);
コード例 #3
0
ファイル: WindowsConsoleDriver.cs プロジェクト: raj581/Marvin
 extern static bool GetConsoleCursorInfo(IntPtr handle, out ConsoleCursorInfo info);
コード例 #4
0
		extern static bool GetConsoleCursorInfo (IntPtr handle, out ConsoleCursorInfo info);
コード例 #5
0
		static bool SetConsoleCursorInfo (IntPtr handle, ref ConsoleCursorInfo info)
		{
			throw new System.NotImplementedException();
		}
コード例 #6
0
 static bool SetConsoleCursorInfo(IntPtr handle, ref ConsoleCursorInfo info)
 {
     throw new System.NotImplementedException();
 }
コード例 #7
0
ファイル: NativeMethods.cs プロジェクト: Koneke/DeepMagic
		internal static extern bool GetConsoleCursorInfo(
			IntPtr hConsoleOutput,
			out ConsoleCursorInfo lpConsoleCursorInfo);
コード例 #8
0
ファイル: Win32.ConsoleEx.cs プロジェクト: Vliegwiel/dfWeb
 private static extern int SetConsoleCursorInfo(int hConsoleOutput, ref ConsoleCursorInfo lpConsoleCursorInfo);