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
cdefs.h
Package: mysql-3.23.35.tar.gz [view]
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:
MySQL
Development Platform:
Visual C++
- /* ==== cdefs.h ============================================================
- * Copyright (c) 1994 by Chris Provenzano, proven@athena.mit.edu
- *
- * Description : Similar to the BSD cdefs.h file.
- *
- * 1.00 94/01/26 proven
- * -Started coding this file.
- */
- #ifndef _PTHREAD_SYS_CDEFS_H_
- #define _PTHREAD_SYS_CDEFS_H_
- #include <sys/_inttypes.h>
- /* Stuff for compiling */
- #if defined(__GNUC__)
- #if defined(__cplusplus)
- #define __INLINE static inline
- #define __BEGIN_DECLS extern "C" {
- #define __END_DECLS };
- #else
- #define __INLINE extern inline
- #define __CAN_DO_EXTERN_INLINE
- #define __BEGIN_DECLS
- #define __END_DECLS
- #if !defined(__STDC__)
- #define const __const
- #define inline __inline
- #define signed __signed
- #define volatile __volatile
- #endif
- #endif
- #else /* !__GNUC__ */
- #define __INLINE static
- #define __BEGIN_DECLS
- #define __END_DECLS
- #endif
- #ifndef __NORETURN
- #define __NORETURN
- #endif /* __NORETURN not defined. */
- #ifndef _U_INT32_T_
- #define _U_INT32_T_
- typedef unsigned int u_int32_t;
- #endif
- #ifndef _U_INT16_T_
- #define _U_INT16_T_
- typedef unsigned short u_int16_t;
- #endif
- #ifndef _INT32_T_
- #define _INT32_T_
- /*
- typedef int int32_t;
- */
- #endif
- #ifndef _INT16_T_
- #define _INT16_T_
- /*
- typedef short int16_t;
- */
- #endif
- #endif