Lines Matching refs:_handle
40 void *_handle; \
45 _handle = LoadLibrary(path); \
46 if ( _handle == NULL ) NPT_ERROR("Cannot open library"); \
47 _sym = GetProcAddress(_handle, "nptInitialize"); \
51 (*(pnpt))->libhandle = _handle; \
56 void *_handle; \
60 _handle = (npt)->libhandle; \
61 if ( _handle == NULL ) NPT_ERROR("npt->libhandle is NULL"); \
62 _sym = GetProcAddress(_handle, "nptTerminate"); \
65 (void)FreeLibrary(_handle); \