tahoma2d/toonz/sources/include/toonz4.6/casm_msg.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

17 lines
229 B
C

#ifndef _MSG_H_
#define _MSG_H_
#include <stdarg.h>
#undef TNZAPI
#ifdef TNZ_IS_CASMLIB
#define TNZAPI TNZ_EXPORT_API
#else
#define TNZAPI TNZ_IMPORT_API
#endif
TNZAPI void casm_msg(int msg_type, char *format, ...);
#endif