22 lines
267 B
C
22 lines
267 B
C
|
/*
|
||
|
* NSDebug.h
|
||
|
* Cog
|
||
|
*
|
||
|
* Created by Vincent Spader on 5/30/05.
|
||
|
* Copyright 2005 Vincent Spader All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <Cocoa/Cocoa.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
void DBLog(NSString *format, ...);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif
|