core1/done/audio/n_seqplayer.c done
This commit is contained in:
29
include/file_and_line.h
Normal file
29
include/file_and_line.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#ifndef _FILE_AND_LINE_H_
|
||||
#define _FILE_AND_LINE_H_
|
||||
|
||||
extern void func_8033F000(const char *, const char *, int);
|
||||
|
||||
|
||||
#ifdef NONMATCHING
|
||||
#define LINE(line_num) __LINE__
|
||||
#define FILE(file_name) __FILE__
|
||||
#define matching_assert(EX, F, L) assert(EX)
|
||||
#else
|
||||
#define LINE(line_num) line_num
|
||||
#define FILE(file_name) "file_name"
|
||||
#ifdef __ANSI_CPP__
|
||||
#define FILE(file_name) # file_name
|
||||
#else
|
||||
#define FILE(file_name) "file_name"
|
||||
#endif
|
||||
#define matching_assert(EX, F, L) assert(EX)
|
||||
#ifdef __ANSI_CPP__
|
||||
#define matching_assert(EX, F, L) ((EX)?((void)0):func_8033F000( # EX , # F, L))
|
||||
#else
|
||||
#define matching_assert(EX, F , L) ((EX)?((void)0):func_8033F000("EX", "F", L))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user