windows.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hlxclib/windows.h"
  36. #if defined(WIN32_PLATFORM_PSPC)
  37. LONG __helix_RegOpenKey(HKEY hKey, const char* lpSubKey, PHKEY phkResult)
  38. {
  39.     return RegOpenKeyEx(hKey, OS_STRING(lpSubKey), 0, KEY_ALL_ACCESS,
  40. phkResult);
  41. }
  42. LONG __helix_RegQueryValue(HKEY hKey, const char* lpSubKey, 
  43.    char* lpValue, PLONG lpcbValue)
  44. {
  45.     DWORD dwType;
  46.     DWORD cbValue = *lpcbValue;
  47.     LONG ret = RegQueryValueEx(hKey, OS_STRING(lpSubKey),
  48.        0, 
  49.        &dwType,
  50.        (LPBYTE)(OS_TEXT_PTR)OS_STRING2(lpValue, cbValue),
  51.        &cbValue);
  52.     *lpcbValue = (LONG)cbValue;
  53.     return ret;
  54. }
  55. LONG __helix_RegCreateKey(HKEY hKey, const char* lpSubKey, PHKEY phkResult)
  56. {
  57.     DWORD dwDisposition;
  58.     return RegCreateKeyEx(hKey, OS_STRING(lpSubKey), 0,
  59.   OS_STRING(""),
  60.   REG_OPTION_NON_VOLATILE,
  61.   KEY_ALL_ACCESS,
  62.   0,
  63.   phkResult,
  64.   &dwDisposition);
  65. }
  66. LONG __helix_RegEnumKey(HKEY hKey, DWORD dwIndex, char* lpName, DWORD cbName)
  67. {
  68.     DWORD dwNameSize = cbName / sizeof(TCHAR);
  69.     FILETIME fileTime;
  70.     return RegEnumKeyEx(hKey, dwIndex, OS_STRING2(lpName, cbName),
  71. &dwNameSize, 0, 0, 0, &fileTime);
  72. }
  73. LONG __helix_RegSetValue(HKEY hKey, const char* lpSubKey, DWORD dwType, 
  74.  const char* lpData, DWORD cbData)
  75. {
  76.     LONG ret;
  77.     if (dwType == REG_SZ || dwType == REG_MULTI_SZ || dwType == REG_EXPAND_SZ)
  78.     {
  79. OS_STRING_TYPE lpStr(lpData);
  80. ret = RegSetValueEx(hKey, OS_STRING(lpSubKey), 0, dwType,
  81.     (LPBYTE)(OS_TEXT_PTR)(lpStr), (cbData + 1) * sizeof(*(OS_TEXT_PTR)lpStr));
  82.     }
  83.     else
  84.     {
  85. ret = RegSetValueEx(hKey, OS_STRING(lpSubKey), 0, dwType,
  86.     (LPBYTE)lpData, cbData);
  87.     }
  88.     return ret;
  89. }
  90. BOOL __helix_GetDiskFreeSpace(LPCTSTR lpRootPathName,
  91.       LPDWORD lpSectorsPerCluster,
  92.       LPDWORD lpBytesPerSector,
  93.       LPDWORD lpNumberOfFreeClusters,
  94.       LPDWORD lpTotalNumberOfClusters)
  95. {
  96.     ULARGE_INTEGER freeBytesAvailableToCaller;
  97.     ULARGE_INTEGER totalNumberOfBytes;
  98.     ULARGE_INTEGER totalNumberOfFreeBytes;
  99.     
  100.     BOOL ret = GetDiskFreeSpaceEx(lpRootPathName,
  101.   &freeBytesAvailableToCaller,
  102.   &totalNumberOfBytes,
  103.   &totalNumberOfFreeBytes);
  104.     if (ret)
  105.     {
  106. *lpSectorsPerCluster = 1;
  107. *lpBytesPerSector = 1;
  108. *lpNumberOfFreeClusters = freeBytesAvailableToCaller.LowPart;
  109. *lpTotalNumberOfClusters = totalNumberOfBytes.LowPart;
  110.     }
  111.     return ret;
  112. }
  113. #endif /* defined(WIN32_PLATFORM_PSPC) */