• Home
  • Raw
  • Download

Lines Matching refs:HKEY

20 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
21 static PyObject *PyHKEY_FromHKEY(HKEY h);
388 HKEY hkey;
423 RegCloseKey((HKEY)obkey->hkey); in PyHKEY_deallocFunc()
602 PyHKEY_New(HKEY hInit) in PyHKEY_New()
621 rc = key->hkey ? RegCloseKey((HKEY)key->hkey) : ERROR_SUCCESS; in PyHKEY_Close()
629 PyHKEY_AsHKEY(PyObject *ob, HKEY *pHANDLE, BOOL bNoneOK) in PyHKEY_AsHKEY()
638 *pHANDLE = (HKEY)0; in PyHKEY_AsHKEY()
647 *pHANDLE = (HKEY)PyLong_AsVoidPtr(ob); in PyHKEY_AsHKEY()
661 PyHKEY_FromHKEY(HKEY h) in PyHKEY_FromHKEY()
687 long rc = RegCloseKey((HKEY)PyInt_AsLong(obHandle)); in PyWinObject_CloseHKEY()
694 long rc = RegCloseKey((HKEY)PyLong_AsVoidPtr(obHandle)); in PyWinObject_CloseHKEY()
1017 HKEY hKey; in PyConnectRegistry()
1020 HKEY retKey; in PyConnectRegistry()
1038 HKEY hKey; in PyCreateKey()
1041 HKEY retKey; in PyCreateKey()
1056 HKEY hKey; in PyCreateKeyEx()
1059 HKEY retKey; in PyCreateKeyEx()
1079 HKEY hKey; in PyDeleteKey()
1097 HKEY hKey; in PyDeleteKeyEx()
1100 typedef LONG (WINAPI *RDKEFunc)(HKEY, const char*, REGSAM, int); in PyDeleteKeyEx()
1137 HKEY hKey; in PyDeleteValue()
1158 HKEY hKey; in PyEnumKey()
1191 HKEY hKey; in PyEnumValue()
1309 HKEY hKey; in PyFlushKey()
1327 HKEY hKey; in PyLoadKey()
1349 HKEY hKey; in PyOpenKey()
1354 HKEY retKey; in PyOpenKey()
1375 HKEY hKey; in PyQueryInfoKey()
1404 HKEY hKey; in PyQueryValue()
1466 HKEY hKey; in PyQueryValueEx()
1527 HKEY hKey; in PySaveKey()
1553 HKEY hKey; in PySetValue()
1599 HKEY hKey; in PySetValueEx()
1640 HKEY hKey; in PyDisableReflectionKey()
1643 typedef LONG (WINAPI *RDRKFunc)(HKEY); in PyDisableReflectionKey()
1676 HKEY hKey; in PyEnableReflectionKey()
1679 typedef LONG (WINAPI *RERKFunc)(HKEY); in PyEnableReflectionKey()
1712 HKEY hKey; in PyQueryReflectionKey()
1715 typedef LONG (WINAPI *RQRKFunc)(HKEY, BOOL *); in PyQueryReflectionKey()
1785 inskey(PyObject * d, char * name, HKEY key) in inskey()