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
proto.h
Package: rtsp-1.0.1.tar.gz [view]
Upload User: sy_wanhua
Upload Date: 2013-07-25
Package Size: 3048k
Code Size: 2k
Category:
Streaming_Mpeg4
Development Platform:
C/C++
- /*
- * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
- * Universitaet Berlin. See the accompanying file "COPYRIGHT" for
- * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
- */
- /*$Header: /cvsroot/vocal.modules/contrib/libsndfile-0.0.22/src/GSM610/proto.h,v 1.2 2001/02/27 19:23:17 deepalir Exp $*/
- #ifndef PROTO_H
- #define PROTO_H
- /*#if __cplusplus*/
- # define NeedFunctionPrototypes 1
- /*#endif*/
- #if __STDC__
- # define NeedFunctionPrototypes 1
- #endif
- #ifdef _NO_PROTO
- # undef NeedFunctionPrototypes
- #endif
- #undef P /* gnu stdio.h actually defines this... */
- #undef P0
- #undef P1
- #undef P2
- #undef P3
- #undef P4
- #undef P5
- #undef P6
- #undef P7
- #undef P8
- #if NeedFunctionPrototypes
- # define P( protos ) protos
- # define P0() (void)
- # define P1(x, a) (a)
- # define P2(x, a, b) (a, b)
- # define P3(x, a, b, c) (a, b, c)
- # define P4(x, a, b, c, d) (a, b, c, d)
- # define P5(x, a, b, c, d, e) (a, b, c, d, e)
- # define P6(x, a, b, c, d, e, f) (a, b, c, d, e, f)
- # define P7(x, a, b, c, d, e, f, g) (a, b, c, d, e, f, g)
- # define P8(x, a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h)
- #else /* !NeedFunctionPrototypes */
- # define P( protos ) ( /* protos */ )
- # define P0() ()
- # define P1(x, a) x a;
- # define P2(x, a, b) x a; b;
- # define P3(x, a, b, c) x a; b; c;
- # define P4(x, a, b, c, d) x a; b; c; d;
- # define P5(x, a, b, c, d, e) x a; b; c; d; e;
- # define P6(x, a, b, c, d, e, f) x a; b; c; d; e; f;
- # define P7(x, a, b, c, d, e, f, g) x a; b; c; d; e; f; g;
- # define P8(x, a, b, c, d, e, f, g, h) x a; b; c; d; e; f; g; h;
- #endif /* !NeedFunctionPrototypes */
- #endif /* PROTO_H */