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
Debug.h
Package: FireWall-C++.rar [view]
Upload User: kklily621
Upload Date: 2013-06-25
Package Size: 252k
Code Size: 1k
Category:
Firewall-Security
Development Platform:
Visual C++
- //=============================================================================================
- /*
- Debug.h
- The Debug Header Function
- Project : XFILTER 1.0 Personal Firewall
- Author : Tony Zhu
- Create Date : 2001/08/03
- Email : xstudio@xfilt.com
- URL : http://www.xfilt.com
- Copyright (c) 2001-2002 XStudio Technology.
- All Rights Reserved.
- WARNNING:
- */
- //=============================================================================================
- #ifdef _DEBUG
- #define ODS(fmt)
- {
- OutputDebugString(fmt);
- OutputDebugString(_T("n"));
- }
- #define ODS2(fmt,fmt2)
- {
- OutputDebugString(fmt);
- OutputDebugString(fmt2);
- OutputDebugString(_T("n"));
- }
- #define DP1(fmt, var)
- {
- TCHAR sOut[256];
- _stprintf(sOut, fmt, var);
- OutputDebugString(sOut);
- }
- #else
- #define ODS(fmt)
- #define ODS2(fmt,fmt2)
- #define DP1(fmt, x1)
- #endif