www.pudn.com > WINCEOS.zip > btagdbg.h


// 
// Copyright (c) Microsoft Corporation.  All rights reserved. 
// 
// 
// This source code is licensed under Microsoft Shared Source License 
// Version 1.0 for Windows CE. 
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223. 
// 
 
#ifndef __BTAGDBG_H__ 
#define __BTAGDBG_H__ 
 
#include  
 
#ifdef DEBUG 
 
// Debug ZONE defines 
#define ZONE_OUTPUT         DEBUGZONE(0) 
#define ZONE_MISC           DEBUGZONE(1) 
#define ZONE_SERVICE        DEBUGZONE(2) 
#define ZONE_PARSER         DEBUGZONE(3) 
#define ZONE_HANDLER        DEBUGZONE(4) 
// zones 5 & 6 are used by network & phoneext 
#define ZONE_WARN           DEBUGZONE(14) 
#define ZONE_ERROR          DEBUGZONE(15) 
 
#define MAX_DEBUG_BUF   512 
 
void DbgPrintATCmd(DWORD dwZone, LPSTR szCommand, int cbCommand); 
 
#endif // DEBUG 
 
 
#endif // __BTAGDBG_H__