mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +00:00
a92216f309
- Fit apps better in dir structure. - Move old_wordpad to templates (Ged said it's a great framework). svn path=/trunk/; revision=34308
18 lines
292 B
C
18 lines
292 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS HTTP Daemon
|
|
* FILE: include/debug.h
|
|
*/
|
|
#ifndef __DEBUG_H
|
|
#define __DEBUG_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef DBG
|
|
#define DPRINT(x, ...) printf(x)
|
|
#else
|
|
#define DPRINT(x...)
|
|
#endif
|
|
|
|
#endif /* __DEBUG_H */
|