You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
396 B
C
21 lines
396 B
C
#ifndef PSB_INTERNALS_H
|
|
#define PSB_INTERNALS_H
|
|
|
|
/* providing a default mangling scheme */
|
|
#ifndef LowerUnderscore
|
|
#ifndef LowerDoubleUnderscore
|
|
#ifndef LowerCase
|
|
#ifndef UpperUnderscore
|
|
#ifndef UpperDoubleUnderscore
|
|
#ifndef UpperCase
|
|
#define LowerUnderscore 1 /* 20110404 the default */
|
|
/* #error "should specify a default mangling scheme" */
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|