vcinclude: Try to define bool_t in a way less likely to conflict with other includes

This commit is contained in:
popcornmix
2014-08-06 18:20:37 +01:00
parent 9dfc733992
commit 2815f8ea00

View File

@@ -87,7 +87,11 @@ typedef enum bool_e
{ {
VC_FALSE = 0, VC_FALSE = 0,
VC_TRUE = 1, VC_TRUE = 1,
} bool_t; } VC_BOOL_T;
#ifndef bool_t
#define bool_t VC_BOOL_T
#endif
/*}}}*/ /*}}}*/