VirtualBox

Changeset 66498 in vbox for trunk/src/VBox/Storage


Ignore:
Timestamp:
Apr 10, 2017 1:53:08 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
114496
Message:

make doxygen happy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/VDBackendsInline.h

    r66493 r66498  
    3333 */
    3434#define VD_BACKEND_CALLBACK_GET_COMMENT_DEF_NOT_SUPPORTED(a_szStubName) \
    35     static DECLCALLBACK(int) a_szStubName(void *pvBackend, char *pszComment, size_t cbComment) \
     35    static DECLCALLBACK(int) a_szStubName(void *pBackendData, char *pszComment, size_t cbComment) \
    3636    { \
    3737        RT_NOREF2(pszComment, cbComment); \
    38         LogFlowFunc(("pvBackend=%#p pszComment=%#p cbComment=%zu\n", pvBackend, pszComment, cbComment)); \
    39         AssertPtrReturn(pvBackend, VERR_VD_NOT_OPENED); \
     38        LogFlowFunc(("pBackendData=%#p pszComment=%#p cbComment=%zu\n", pBackendData, pszComment, cbComment)); \
     39        AssertPtrReturn(pBackendData, VERR_VD_NOT_OPENED); \
    4040        LogFlowFunc(("returns %Rrc comment='%s'\n", VERR_NOT_SUPPORTED, pszComment)); \
    4141        return VERR_NOT_SUPPORTED; \
     
    5252 */
    5353#define VD_BACKEND_CALLBACK_SET_COMMENT_DEF_NOT_SUPPORTED(a_szStubName, a_ImageStateType) \
    54     static DECLCALLBACK(int) a_szStubName(void *pvBackend, const char *pszComment) \
     54    static DECLCALLBACK(int) a_szStubName(void *pBackendData, const char *pszComment) \
    5555    { \
    5656        RT_NOREF1(pszComment); \
    57         LogFlowFunc(("pvBackend=%#p pszComment=\"%s\"\n", pvBackend, pszComment)); \
    58         a_ImageStateType pThis = (a_ImageStateType)pvBackend; \
     57        LogFlowFunc(("pBackendData=%#p pszComment=\"%s\"\n", pBackendData, pszComment)); \
     58        a_ImageStateType pThis = (a_ImageStateType)pBackendData; \
    5959        AssertPtrReturn(pThis, VERR_VD_NOT_OPENED); \
    6060        int rc = VERR_NOT_SUPPORTED; \
     
    7474 */
    7575#define VD_BACKEND_CALLBACK_GET_UUID_DEF_NOT_SUPPORTED(a_szStubName) \
    76     static DECLCALLBACK(int) a_szStubName(void *pvBackend, PRTUUID pUuid) \
     76    static DECLCALLBACK(int) a_szStubName(void *pBackendData, PRTUUID pUuid) \
    7777    { \
    7878        RT_NOREF1(pUuid); \
    79         LogFlowFunc(("pvBackend=%#p pUuid=%#p\n", pvBackend, pUuid)); \
    80         AssertPtrReturn(pvBackend, VERR_VD_NOT_OPENED); \
     79        LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid)); \
     80        AssertPtrReturn(pBackendData, VERR_VD_NOT_OPENED); \
    8181        LogFlowFunc(("returns %Rrc (%RTuuid)\n", VERR_NOT_SUPPORTED, pUuid)); \
    8282        return VERR_NOT_SUPPORTED; \
     
    9393 */
    9494#define VD_BACKEND_CALLBACK_SET_UUID_DEF_NOT_SUPPORTED(a_szStubName, a_ImageStateType) \
    95     static DECLCALLBACK(int) a_szStubName(void *pvBackend, PCRTUUID pUuid) \
     95    static DECLCALLBACK(int) a_szStubName(void *pBackendData, PCRTUUID pUuid) \
    9696    { \
    9797        RT_NOREF1(pUuid); \
    98         LogFlowFunc(("pvBackend=%#p Uuid=%RTuuid\n", pvBackend, pUuid)); \
    99         a_ImageStateType pThis = (a_ImageStateType)pvBackend; \
     98        LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid)); \
     99        a_ImageStateType pThis = (a_ImageStateType)pBackendData; \
    100100        AssertPtrReturn(pThis, VERR_VD_NOT_OPENED); \
    101101        int rc = VERR_NOT_SUPPORTED; \
Note: See TracChangeset for help on using the changeset viewer.

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