代码搜索:GetConsoleScreenBufferInfo
找到约 13 项符合「GetConsoleScreenBufferInfo」的源代码
代码结果 13
www.eeworm.com/read/358784/10179571
asm console2.asm
TITLE Console Demo #2 (Console2.asm)
; Demonstration of SetConsoleCursorPosition,
; GetConsoleCursorInfo, SetConsoleCursorInfo,
; SetConsoleScreenBufferSize, SetConsoleCursorPositi
www.eeworm.com/read/291108/7087254
cpp main.cpp
// SensorReader.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "Globe.h"
#include "Compass.h"
#include "GPS.H"
#include "HMDMOUSE.H"
#include "geo_
www.eeworm.com/read/141139/13036010
asm console2.asm
TITLE Console Demo #2 (Console2.asm)
; Demonstration of SetConsoleCursorPosition,
; GetConsoleCursorInfo, SetConsoleCursorInfo,
; SetConsoleScreenBufferSize, SetConsoleCursorPositi
www.eeworm.com/read/145991/5741836
c scrsiznt.c
/*
* $Id: scrsiznt.c 1.5 1993/09/26 03:32:27 dmwatt Exp $
*
* $Log: scrsiznt.c $
* Revision 1.5 1993/09/26 03:32:27 dmwatt
* Use Standard Windows NT error message module
*
www.eeworm.com/read/120207/14809943
c scrsiznt.c
/*
* $Id: scrsiznt.c 1.5 1993/09/26 03:32:27 dmwatt Exp $
*
* $Log: scrsiznt.c $
* Revision 1.5 1993/09/26 03:32:27 dmwatt
* Use Standard Windows NT error message module
*
www.eeworm.com/read/162706/10281123
cpp console_screen2.cpp
// ----------------------------------------------------------
// ITS82
// console_screen2.cpp
//
// Helper Functions for console screen manipulation
// Apr 2005
// ------------------------------
www.eeworm.com/read/323241/13346775
h clearscream.h
#include
#include
int clrscr()
{
HANDLE hndl = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
GetConsoleScreenBufferInfo(hndl, &csbi);
www.eeworm.com/read/336353/12449011
h my_conio.h
#ifndef _MY_CONIO_H_FILE_INCLUDED
#define _MY_CONIO_H_FILE_INCLUDED
#include
#include
#include
#define PERR(bSuccess,api) {if(!(bSuccess)) printf("%s:Error %
www.eeworm.com/read/249248/12515133
c clearscreen.c
#include
#include "stdafx.h"
#include
#include
#include
void ClearScreen()
{
HANDLE hOutput=GetStdHandl
www.eeworm.com/read/275831/10794507
rb 06 - determining terminal size.rb
Curses.program do |scr|
max_y, max_x = scr.maxy, scr.maxx
scr.setpos(0, 0)
scr.addstr("Your terminal size is #{max_x}x#{max_y}. Press any key to exit.")
scr.getch
end
#---
Ncurses.program do