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
PA_Draw_Sim.h
Package: lread.rar [view]
Upload User: holyzs
Upload Date: 2022-06-29
Package Size: 2335k
Code Size: 1k
Category:
Editor
Development Platform:
C/C++
- #ifndef __PA_DRAW_SIM_H__
- #define __PA_DRAW_SIM_H__ 1
- #pragma pack(1)
- typedef struct{
- u16 Id; // ?
- u32 Length;
- u16 Nothing1, Nothing2; // ?
- u16 ImageStart1, ImageStart2; // Offset of start of image, start at position 0x0A, which can only be 2-byte aligined
- } BMPHeader0;
- typedef struct{
- u32 SizeofHeader; // 40
- u32 Width, Height;
- u16 Colorplanes; // Usually 1
- u16 BitsperPixel; //1, 2, 4, 8, 16, 24, 32
- u32 Compression; // 0 for none, 1...
- u32 SizeofData; // Not reliable
- u32 WidthperMeter, HeightperMeter; // Don't care
- u32 NColors, ImportantColors; // Number of colors used, important colors ?
- } BMP_Headers;
- void PA_LoadBmpToBuffer(u16 *Buffer, s16 x, s16 y, void *bmp, s16 SWidth);
- #endif // __PA_DRAW_SIM_H__