Home
last modified time | relevance | path

Searched refs:fromC (Results 1 – 1 of 1) sorted by relevance

/CafeSDK-2.12.13-1/system/include/nn/util/detail/
Dutil_CLibImpl.h56 #define NN_UTIL_DETAIL_CLIBIMPL_DECLARE_CONVERSION(name, fromC, toC) \ argument
57 NN_EXTERN_C toC* name(fromC*); \
58 NN_EXTERN_C const toC* name##Const(const fromC*)
60 #define NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION(name, fromC, toC, fromCpp, toCpp) \ argument
61 …NN_EXTERN_C toC* name(fromC* p) { return reinterpret_cast<toC*>(static_cast<toCpp*>(reinterpret_ca…
62 …NN_EXTERN_C const toC* name##Const(const fromC* p) { return reinterpret_cast<const toC*>(static_ca…