3 * Copyright 1999-2000 Y.Takagi. All Rights Reserved.
19 void write_debug_stream(const char *, ...) __PRINTFLIKE(1,2);
20 void DUMP_BFILE(BFile
*file
, const char *name
);
21 void DUMP_BMESSAGE(BMessage
*msg
);
22 void DUMP_BDIRECTORY(BDirectory
*dir
);
23 void DUMP_BNODE(BNode
*node
);
24 #define DBGMSG(args) write_debug_stream args
26 #define DUMP_BFILE(file, name) (void)0
27 #define DUMP_BMESSAGE(msg) (void)0
28 #define DUMP_BDIRECTORY(dir) (void)0
29 #define DUMP_BNODE(node) (void)0
30 #define DBGMSG(args) (void)0
33 #endif /* __DBGMSG_H */