Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
XPOINT.H
Package: 超级玛丽游戏的源代码.rar [view]
Upload User: hanguang
Upload Date: 2007-04-01
Package Size: 93k
Code Size: 1k
Category:
Game Server Simulator
Development Platform:
C/C++
- /*-----------------------------------------------------------------------
- ;
- ; XPOINT - header file
- ;
- ;
- ;
- ; ****** XLIB - Mode X graphics library ****************
- ; ****** ****************
- ; ****** Written By Themie Gouthas ****************
- ;
- ; egg@dstos3.dsto.gov.au
- ; teg@bart.dsto.gov.au
- ;
- ; Terminology & notes:
- ; VRAM == Video RAM
- ; SRAM == System RAM
- ; X coordinates are in pixels unless explicitly stated
- ;
- ;-----------------------------------------------------------------------*/
- #ifndef _XPOINT_H_
- #define _XPOINT_H_
- /* FUNCTIONS =========================================================== */
- #ifdef __cplusplus
- extern "C" {
- #endif
- void x_put_pix( /* Draw a pixel on the screen */
- WORD X,
- WORD Y,
- WORD PageOffset,
- WORD Color);
- WORD x_get_pix( /* Read a pixel from the screen */
- WORD X,
- WORD Y,
- WORD PageBase);
- #ifdef __cplusplus
- }
- #endif
- #endif