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