• 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()
1018 HKEY hKey; in PyConnectRegistry()
1021 HKEY retKey; in PyConnectRegistry()
1039 HKEY hKey; in PyCreateKey()
1042 HKEY retKey; in PyCreateKey()
1057 HKEY hKey; in PyCreateKeyEx()
1060 HKEY retKey; in PyCreateKeyEx()
1080 HKEY hKey; in PyDeleteKey()
1098 HKEY hKey; in PyDeleteKeyEx()
1101 typedef LONG (WINAPI *RDKEFunc)(HKEY, const char*, REGSAM, int); in PyDeleteKeyEx()
1138 HKEY hKey; in PyDeleteValue()
1159 HKEY hKey; in PyEnumKey()
1192 HKEY hKey; in PyEnumValue()
1310 HKEY hKey; in PyFlushKey()
1328 HKEY hKey; in PyLoadKey()
1350 HKEY hKey; in PyOpenKey()
1355 HKEY retKey; in PyOpenKey()
1376 HKEY hKey; in PyQueryInfoKey()
1405 HKEY hKey; in PyQueryValue()
1467 HKEY hKey; in PyQueryValueEx()
1528 HKEY hKey; in PySaveKey()
1554 HKEY hKey; in PySetValue()
1600 HKEY hKey; in PySetValueEx()
1641 HKEY hKey; in PyDisableReflectionKey()
1644 typedef LONG (WINAPI *RDRKFunc)(HKEY); in PyDisableReflectionKey()
1677 HKEY hKey; in PyEnableReflectionKey()
1680 typedef LONG (WINAPI *RERKFunc)(HKEY); in PyEnableReflectionKey()
1713 HKEY hKey; in PyQueryReflectionKey()
1716 typedef LONG (WINAPI *RQRKFunc)(HKEY, BOOL *); in PyQueryReflectionKey()
1786 inskey(PyObject * d, char * name, HKEY key) in inskey()