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
gui_color.h
Package: sql_for_ali.rar [view]
Upload User: sunhongbo
Upload Date: 2022-01-25
Package Size: 3010k
Code Size: 1k
Category:
Database system
Development Platform:
C/C++
- #ifndef _GUI_COLOR_H__
- #define _GUI_COLOR_H__
- #if GUI_COLOR == GUI_COLOR_CLUT
- #define GUI_COLOR_WHITE 1
- #define GUI_COLOR_BLACK 0
- #define GUI_COLOR_TRANSPARENT 255
- #elif GUI_COLOR == GUI_COLOR_1555
- #define GUI_COLOR_WHITE RGB(255,255,255)
- #define GUI_COLOR_BLACK RGB(0,0,0)
- #define GUI_COLOR_TRANSPARENT ((0xff>>3)<<10)|(0xff>>3)
- #elif GUI_COLOR == GUI_COLOR_565
- #define GUI_COLOR_WHITE RGB(255,255,255)
- #define GUI_COLOR_BLACK RGB(0,0,0)
- #define GUI_COLOR_TRANSPARENT ((0xff>>3)<<10)|(0xff>>3)
- #endif
- #endif