MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / FB_API_HANDLE_TO_ULONG

Function FB_API_HANDLE_TO_ULONG

src/yvalve/why.cpp:680–680  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

678#if defined(_LP64) || defined(__LP64__) || defined(__arch64__) || defined(_WIN64)
679inline FB_API_HANDLE ULONG_TO_FB_API_HANDLE(ULONG h) { return static_cast<FB_API_HANDLE>(h); }
680inline ULONG FB_API_HANDLE_TO_ULONG(FB_API_HANDLE h) { return h; }
681#else
682inline FB_API_HANDLE ULONG_TO_FB_API_HANDLE(ULONG h) { return reinterpret_cast<FB_API_HANDLE>(h); }
683inline ULONG FB_API_HANDLE_TO_ULONG(FB_API_HANDLE h) { return reinterpret_cast<ULONG>(h); }

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected