Есть вопрос по использованию WinAPI. Конкретно - по функции RegCreateKeyEx (я работаю в си). Это функция для работы с реестром она имеет непонятный параметр: LPTSTR lpClass. Может быть кто-нибудь знает что там надол указывать?
В английской версии хелпа приводится следующее описание:
The RegCreateKeyEx function creates the specified key. If the key already exists in the registry, the function opens it.
LONG RegCreateKeyEx(
HKEY hKey, // handle of an open key
LPCTSTR lpSubKey, // address of subkey name
DWORD Reserved, // reserved
LPTSTR lpClass, // address of class string
DWORD dwOptions, // special options flag
REGSAM samDesired, // desired security access
LPSECURITY_ATTRIBUTES lpSecurityAttributes, // address of key security structure
PHKEY phkResult, // address of buffer for opened handle
LPDWORD lpdwDisposition // address of disposition value buffer
);
lpClass
Points to a null-terminated string that specifies the class (object type) of this key. This parameter is ignored if the key already exists.
В английской версии хелпа приводится следующее описание:
The RegCreateKeyEx function creates the specified key. If the key already exists in the registry, the function opens it.
LONG RegCreateKeyEx(
HKEY hKey, // handle of an open key
LPCTSTR lpSubKey, // address of subkey name
DWORD Reserved, // reserved
LPTSTR lpClass, // address of class string
DWORD dwOptions, // special options flag
REGSAM samDesired, // desired security access
LPSECURITY_ATTRIBUTES lpSecurityAttributes, // address of key security structure
PHKEY phkResult, // address of buffer for opened handle
LPDWORD lpdwDisposition // address of disposition value buffer
);
lpClass
Points to a null-terminated string that specifies the class (object type) of this key. This parameter is ignored if the key already exists.