390 lines
8.8 KiB
C
390 lines
8.8 KiB
C
|
/**
|
||
|
* WinPR: Windows Portable Runtime
|
||
|
* Windows Registry
|
||
|
*
|
||
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
#include <winpr/registry.h>
|
||
|
|
||
|
/*
|
||
|
* Windows registry MSDN pages:
|
||
|
* Reference: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724880/
|
||
|
* Functions: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724875/
|
||
|
*/
|
||
|
|
||
|
#ifndef _WIN32
|
||
|
|
||
|
#include "registry_xml.h"
|
||
|
|
||
|
LONG RegCloseKey(HKEY hKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegConnectRegistryW(LPCWSTR lpMachineName, HKEY hKey, PHKEY phkResult)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegConnectRegistryA(LPCSTR lpMachineName, HKEY hKey, PHKEY phkResult)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegCopyTreeW(HKEY hKeySrc, LPCWSTR lpSubKey, HKEY hKeyDest)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegCopyTreeA(HKEY hKeySrc, LPCSTR lpSubKey, HKEY hKeyDest)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegCreateKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD Reserved, LPWSTR lpClass, DWORD dwOptions,
|
||
|
REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegCreateKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD Reserved, LPSTR lpClass, DWORD dwOptions,
|
||
|
REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegCreateKeyTransactedW(HKEY hKey, LPCWSTR lpSubKey, DWORD Reserved, LPWSTR lpClass,
|
||
|
DWORD dwOptions, REGSAM samDesired, const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
|
||
|
PHKEY phkResult, LPDWORD lpdwDisposition, HANDLE hTransaction, PVOID pExtendedParemeter)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegCreateKeyTransactedA(HKEY hKey, LPCSTR lpSubKey, DWORD Reserved, LPSTR lpClass,
|
||
|
DWORD dwOptions, REGSAM samDesired, const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
|
||
|
PHKEY phkResult, LPDWORD lpdwDisposition, HANDLE hTransaction, PVOID pExtendedParemeter)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyW(HKEY hKey, LPCWSTR lpSubKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyA(HKEY hKey, LPCSTR lpSubKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyExW(HKEY hKey, LPCWSTR lpSubKey, REGSAM samDesired, DWORD Reserved)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyExA(HKEY hKey, LPCSTR lpSubKey, REGSAM samDesired, DWORD Reserved)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyTransactedW(HKEY hKey, LPCWSTR lpSubKey, REGSAM samDesired,
|
||
|
DWORD Reserved, HANDLE hTransaction, PVOID pExtendedParameter)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyTransactedA(HKEY hKey, LPCSTR lpSubKey, REGSAM samDesired,
|
||
|
DWORD Reserved, HANDLE hTransaction, PVOID pExtendedParameter)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyValueW(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpValueName)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteKeyValueA(HKEY hKey, LPCSTR lpSubKey, LPCSTR lpValueName)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteTreeW(HKEY hKey, LPCWSTR lpSubKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteTreeA(HKEY hKey, LPCSTR lpSubKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteValueW(HKEY hKey, LPCWSTR lpValueName)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDeleteValueA(HKEY hKey, LPCSTR lpValueName)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDisablePredefinedCache(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDisablePredefinedCacheEx(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegDisableReflectionKey(HKEY hBase)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegEnableReflectionKey(HKEY hBase)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegEnumKeyExW(HKEY hKey, DWORD dwIndex, LPWSTR lpName, LPDWORD lpcName,
|
||
|
LPDWORD lpReserved, LPWSTR lpClass, LPDWORD lpcClass, PFILETIME lpftLastWriteTime)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegEnumKeyExA(HKEY hKey, DWORD dwIndex, LPSTR lpName, LPDWORD lpcName,
|
||
|
LPDWORD lpReserved, LPSTR lpClass, LPDWORD lpcClass, PFILETIME lpftLastWriteTime)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegEnumValueW(HKEY hKey, DWORD dwIndex, LPWSTR lpValueName,
|
||
|
LPDWORD lpcchValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegEnumValueA(HKEY hKey, DWORD dwIndex, LPSTR lpValueName,
|
||
|
LPDWORD lpcchValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegFlushKey(HKEY hKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegGetKeySecurity(HKEY hKey, SECURITY_INFORMATION SecurityInformation,
|
||
|
PSECURITY_DESCRIPTOR pSecurityDescriptor, LPDWORD lpcbSecurityDescriptor)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegGetValueW(HKEY hkey, LPCWSTR lpSubKey, LPCWSTR lpValue,
|
||
|
DWORD dwFlags, LPDWORD pdwType, PVOID pvData, LPDWORD pcbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegGetValueA(HKEY hkey, LPCSTR lpSubKey, LPCSTR lpValue,
|
||
|
DWORD dwFlags, LPDWORD pdwType, PVOID pvData, LPDWORD pcbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegLoadKeyW(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpFile)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegLoadKeyA(HKEY hKey, LPCSTR lpSubKey, LPCSTR lpFile)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegLoadMUIStringW(HKEY hKey, LPCWSTR pszValue, LPWSTR pszOutBuf,
|
||
|
DWORD cbOutBuf, LPDWORD pcbData, DWORD Flags, LPCWSTR pszDirectory)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegLoadMUIStringA(HKEY hKey, LPCSTR pszValue, LPSTR pszOutBuf,
|
||
|
DWORD cbOutBuf, LPDWORD pcbData, DWORD Flags, LPCSTR pszDirectory)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegNotifyChangeKeyValue(HKEY hKey, BOOL bWatchSubtree, DWORD dwNotifyFilter, HANDLE hEvent, BOOL fAsynchronous)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOpenCurrentUser(REGSAM samDesired, PHKEY phkResult)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOpenKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOpenKeyTransactedW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions,
|
||
|
REGSAM samDesired, PHKEY phkResult, HANDLE hTransaction, PVOID pExtendedParameter)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOpenKeyTransactedA(HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions,
|
||
|
REGSAM samDesired, PHKEY phkResult, HANDLE hTransaction, PVOID pExtendedParameter)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOpenUserClassesRoot(HANDLE hToken, DWORD dwOptions, REGSAM samDesired, PHKEY phkResult)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegOverridePredefKey(HKEY hKey, HKEY hNewHKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegQueryInfoKeyW(HKEY hKey, LPWSTR lpClass, LPDWORD lpcClass, LPDWORD lpReserved,
|
||
|
LPDWORD lpcSubKeys, LPDWORD lpcMaxSubKeyLen, LPDWORD lpcMaxClassLen,
|
||
|
LPDWORD lpcValues, LPDWORD lpcMaxValueNameLen, LPDWORD lpcMaxValueLen,
|
||
|
LPDWORD lpcbSecurityDescriptor, PFILETIME lpftLastWriteTime)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegQueryInfoKeyA(HKEY hKey, LPSTR lpClass, LPDWORD lpcClass, LPDWORD lpReserved,
|
||
|
LPDWORD lpcSubKeys, LPDWORD lpcMaxSubKeyLen, LPDWORD lpcMaxClassLen,
|
||
|
LPDWORD lpcValues, LPDWORD lpcMaxValueNameLen, LPDWORD lpcMaxValueLen,
|
||
|
LPDWORD lpcbSecurityDescriptor, PFILETIME lpftLastWriteTime)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegQueryMultipleValues(HKEY hKey, PVALENT val_list, DWORD num_vals, LPTSTR lpValueBuf, LPDWORD ldwTotsize)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegQueryReflectionKey(HKEY hBase, BOOL* bIsReflectionDisabled)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegQueryValueExW(HKEY hKey, LPCWSTR lpValueName,
|
||
|
LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegQueryValueExA(HKEY hKey, LPCSTR lpValueName,
|
||
|
LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegReplaceKeyW(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpNewFile, LPCWSTR lpOldFile)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegReplaceKeyA(HKEY hKey, LPCSTR lpSubKey, LPCSTR lpNewFile, LPCSTR lpOldFile)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegRestoreKeyW(HKEY hKey, LPCWSTR lpFile, DWORD dwFlags)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegRestoreKeyA(HKEY hKey, LPCSTR lpFile, DWORD dwFlags)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSaveKeyW(HKEY hKey, LPCWSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSaveKeyA(HKEY hKey, LPCSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSaveKeyExW(HKEY hKey, LPCWSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD Flags)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSaveKeyExA(HKEY hKey, LPCSTR lpFile, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD Flags)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSetKeyValueW(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpValueName, DWORD dwType, LPCVOID lpData, DWORD cbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSetKeyValueA(HKEY hKey, LPCSTR lpSubKey, LPCSTR lpValueName, DWORD dwType, LPCVOID lpData, DWORD cbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSetKeySecurity(HKEY hKey, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR pSecurityDescriptor)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSetValueExW(HKEY hKey, LPCWSTR lpValueName, DWORD Reserved, DWORD dwType, const BYTE* lpData, DWORD cbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegSetValueExA(HKEY hKey, LPCSTR lpValueName, DWORD Reserved, DWORD dwType, const BYTE* lpData, DWORD cbData)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegUnLoadKeyW(HKEY hKey, LPCWSTR lpSubKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
LONG RegUnLoadKeyA(HKEY hKey, LPCSTR lpSubKey)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#endif
|