Searched defs:regkey (Results 1 - 2 of 2) sorted by relevance

/httpd/server/mpm/winnt/
H A Dnt_eventlog.c37 ap_regkey_t *regkey; local
54 if ((rv = ap_regkey_open(&regkey, AP_REGKEY_LOCAL_MACHINE,
64 ap_regkey_value_set(regkey, "EventMessageFile",
68 ap_regkey_value_raw_set(regkey, "TypesSupported", &dwData,
70 ap_regkey_close(regkey);
/httpd/os/win32/
H A Dap_regkey.c48 ap_regkey_t *regkey = key; local
50 if (regkey->hkey && regkey->hkey != INVALID_HANDLE_VALUE) {
51 RegCloseKey(regkey->hkey);
52 regkey->hkey = INVALID_HANDLE_VALUE;
120 AP_DECLARE(apr_status_t) ap_regkey_close(ap_regkey_t *regkey)
123 if ((stat = regkey_cleanup(regkey)) == APR_SUCCESS) {
124 apr_pool_cleanup_kill(regkey->pool, regkey, regkey_cleanup);

Completed in 10 milliseconds