VirtualBox

Changeset 55526 in vbox


Ignore:
Timestamp:
Apr 29, 2015 4:12:32 PM (9 years ago)
Author:
vboxsync
Message:

Formatting.

File:
1 edited

Legend:

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

    r55327 r55526  
    108108    } u;
    109109#ifdef __cplusplus
    110     /** Extract a uint32_t value from an HGCM parameter structure */
    111     int getUInt32 (uint32_t *u32)
     110    /** Extract an uint32_t value from an HGCM parameter structure */
     111    int getUInt32(uint32_t *u32)
    112112    {
    113113        AssertPtrReturn(u32, VERR_INVALID_POINTER);
     
    121121
    122122    /** Extract a uint64_t value from an HGCM parameter structure */
    123     int getUInt64 (uint64_t *u64)
     123    int getUInt64(uint64_t *u64)
    124124    {
    125125        AssertPtrReturn(u64, VERR_INVALID_POINTER);
     
    133133
    134134    /** Extract a pointer value from an HGCM parameter structure */
    135     int getPointer (void **ppv, uint32_t *pcb)
     135    int getPointer(void **ppv, uint32_t *pcb)
    136136    {
    137137        AssertPtrReturn(ppv, VERR_INVALID_POINTER);
     
    148148
    149149    /** Extract a constant pointer value from an HGCM parameter structure */
    150     int getPointer (const void **ppcv, uint32_t *pcb)
     150    int getPointer(const void **ppcv, uint32_t *pcb)
    151151    {
    152152        AssertPtrReturn(ppcv, VERR_INVALID_POINTER);
     
    160160    /** Extract a pointer value to a non-empty buffer from an HGCM parameter
    161161     * structure */
    162     int getBuffer (void **ppv, uint32_t *pcb)
     162    int getBuffer(void **ppv, uint32_t *pcb)
    163163    {
    164164        AssertPtrReturn(ppv, VERR_INVALID_POINTER);
     
    181181    /** Extract a pointer value to a non-empty constant buffer from an HGCM
    182182     * parameter structure */
    183     int getBuffer (const void **ppcv, uint32_t *pcb)
     183    int getBuffer(const void **ppcv, uint32_t *pcb)
    184184    {
    185185        AssertPtrReturn(ppcv, VERR_INVALID_POINTER);
     
    192192
    193193    /** Extract a string value from an HGCM parameter structure */
    194     int getString (char **ppch, uint32_t *pcb)
     194    int getString(char **ppch, uint32_t *pcb)
    195195    {
    196196        uint32_t cb = 0;
     
    211211
    212212    /** Extract a constant string value from an HGCM parameter structure */
    213     int getString (const char **ppch, uint32_t *pcb)
     213    int getString(const char **ppch, uint32_t *pcb)
    214214    {
    215215        char *pch = NULL;
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