Home
last modified time | relevance | path

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

/reactos/dll/win32/advpack/
H A Dadvpack.c444 DLLREGISTER reg_func; in do_ocx_reg() local
447 reg_func = (DLLREGISTER)GetProcAddress(hocx, "DllRegisterServer"); in do_ocx_reg()
449 reg_func = (DLLREGISTER)GetProcAddress(hocx, "DllUnregisterServer"); in do_ocx_reg()
451 if (!reg_func) in do_ocx_reg()
454 reg_func(); in do_ocx_reg()
/reactos/dll/win32/urlmon/
H A Daxinstall.c256 HRESULT (WINAPI *reg_func)(void); in setup_dll()
262 reg_func = (void*)GetProcAddress(module, "DllRegisterServer"); in setup_dll()
263 if(reg_func) { in setup_dll()
264 hres = reg_func(); in setup_dll()