~paulliu/ubuntu/precise/freerdp/fixext

« back to all changes in this revision

Viewing changes to libfreerdp/debug.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-10-25 14:29:02 UTC
  • mto: (9.1.1 sid) (1.1.7)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20101025142902-j8hmshnnxhu61l4m
Tags: upstream-0.8.1
ImportĀ upstreamĀ versionĀ 0.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#define DEBUG_RDP5(fmt, ...) do { } while (0)
20
20
#endif
21
21
 
22
 
#ifdef WITH_DEBUG_CLIPBOARD
23
 
#define DEBUG_CLIPBOARD(fmt, ...) fprintf(stderr, "DBG (CLIBBOARD) %s (%d): " fmt, __FUNCTION__, __LINE__, ## __VA_ARGS__)
24
 
#else
25
 
#define DEBUG_CLIPBOARD(fmt, ...) do { } while (0)
26
 
#endif
27
 
 
28
22
#ifdef WITH_DEBUG_SOUND
29
23
#define DEBUG_SOUND(fmt, ...) fprintf(stderr, "DBG (SOUND) %s (%d): " fmt, __FUNCTION__, __LINE__, ## __VA_ARGS__)
30
24
#else