Searched refs:fromC (Results 1 – 1 of 1) sorted by relevance
53 #define NN_UTIL_DETAIL_CLIBIMPL_DECLARE_CONVERSION(name, fromC, toC) \ argument54 NN_EXTERN_C toC* name(fromC*); \55 NN_EXTERN_C const toC* name##Const(const fromC*)57 #define NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION(name, fromC, toC, fromCpp, toCpp) \ argument58 …NN_EXTERN_C toC* name(fromC* p) { return reinterpret_cast<toC*>(static_cast<toCpp*>(reinterpret_ca…59 …NN_EXTERN_C const toC* name##Const(const fromC* p) { return reinterpret_cast<const toC*>(static_ca…