VirtualBox

Changeset 9918 in vbox


Ignore:
Timestamp:
Jun 25, 2008 2:02:53 PM (17 years ago)
Author:
vboxsync
Message:

Corrected hungarian spelling.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/VBoxGuest.h

    r9811 r9918  
    640640typedef struct
    641641{
    642     char achName[128];
     642    char achName[128]; /**< This is really szName. */
    643643} HGCMServiceLocationHost;
    644644
     
    15741574VBGLR3DECL(int)     VbglR3InfoSvcDisconnect(uint32_t u32ClientId);
    15751575VBGLR3DECL(int)     VbglR3InfoSvcWriteKey(uint32_t u32ClientId, char *pszKey, char *pszValue);
    1576 VBGLR3DECL(int)     VbglR3InfoSvcReadKey(uint32_t u32ClientId, char *pszKey, char *pcValue, uint32_t cbValue, uint32_t *pcbActual);
     1576VBGLR3DECL(int)     VbglR3InfoSvcReadKey(uint32_t u32ClientId, char *pszKey, char *pszValue, uint32_t cbValue, uint32_t *pcbActual);
    15771577/** @}  */
    15781578
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibInfoSvc.cpp

    r9811 r9918  
    110110 * @param   u32ClientId     The client id returned by VbglR3ClipboardConnect().
    111111 * @param   pszKey          The registry key to save to.
    112  * @param   pcValue         Where to store the value retrieved.
    113  * @param   cbValue         The size of the array pcValue
     112 * @param   pszValue        Where to store the value retrieved.
     113 * @param   cbValue         The size of the buffer pszValue points to.
     114 * @param   pcbActual       Where to store the required buffer size. This should be set on buffer
     115 *                          overflows errors but actually isn't... Optional.
    114116 */
    115117VBGLR3DECL(int) VbglR3InfoSvcReadKey(uint32_t u32ClientId, char *pszKey,
    116                                      char *pcValue, uint32_t cbValue, uint32_t *pcbActual)
     118                                     char *pszValue, uint32_t cbValue, uint32_t *pcbActual)
    117119{
    118120    GetConfigKey Msg;
     
    123125    Msg.hdr.cParms = 3;
    124126    VbglHGCMParmPtrSet(&Msg.key, pszKey, strlen(pszKey) + 1);
    125     VbglHGCMParmPtrSet(&Msg.value, pcValue, cbValue);
     127    VbglHGCMParmPtrSet(&Msg.value, pszValue, cbValue);
    126128    VbglHGCMParmUInt32Set(&Msg.size, 0);
    127129
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette