xref: /haiku/src/add-ons/media/media-add-ons/usb_webcam/CamDebug.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2004-2008, François Revol, <revol@free.fr>.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _CAM_DEBUG_H
6 #define _CAM_DEBUG_H
7 
8 #include <Debug.h>
9 
10 /* allow overriding ANSI color */
11 #ifndef CD_COL
12 #define CD_COL "34"
13 #endif
14 
15 #define CH "\033[" CD_COL "mWebcam::%s::%s"
16 #define CT "\033[0m\n", __BASE_FILE__, __FUNCTION__
17 
18 #endif
19