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
basic_exception.cc
Package: videoserver-0.6.2.tar.gz [view]
Upload User: psq1974
Upload Date: 2007-01-06
Package Size: 1195k
Code Size: 1k
Category:
mpeg mp3
Development Platform:
C/C++
- /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
- Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
- Software license is located in file "COPYING"
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include "basic_exception.h"
- void BasicException::init( const char *format, ... )
- {
- va_list ap;
- va_start( ap, format );
- init( format, ap );
- va_end( ap );
- }
- void BasicException::init( const char *format, va_list ap )
- {
- char buf[1024];
- vsnprintf( buf, sizeof( buf ), format, ap );
- text = buf;
- }