summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2019-01-01 06:11:47 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2019-01-01 06:11:47 +0000
commite9a7715fec9d1685e3d4dfc56505bacd07ea81d6 (patch)
treea9a615b9fbe3f69d9490e9550d52b43ea1b37305
parenta4d7663589ff7bc3dc50da03f3d5971ce346e09e (diff)
downloadVirtualBox-svn-e9a7715fec9d1685e3d4dfc56505bacd07ea81d6.tar.gz
Storage: scm --guard-relative-to-dir {parent}
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@76578 cfe28804-0f27-0410-a406-dd0f0b0b656f
-rw-r--r--src/VBox/Storage/VDBackends.h6
-rw-r--r--src/VBox/Storage/VDBackendsInline.h6
-rw-r--r--src/VBox/Storage/VDICore.h6
-rw-r--r--src/VBox/Storage/VDInternal.h6
-rw-r--r--src/VBox/Storage/testcase/BuiltinTests.h6
-rw-r--r--src/VBox/Storage/testcase/VDDefs.h6
-rw-r--r--src/VBox/Storage/testcase/VDIoBackend.h6
-rw-r--r--src/VBox/Storage/testcase/VDIoBackendMem.h6
-rw-r--r--src/VBox/Storage/testcase/VDIoRnd.h6
-rw-r--r--src/VBox/Storage/testcase/VDMemDisk.h6
-rw-r--r--src/VBox/Storage/testcase/VDScript.h6
-rw-r--r--src/VBox/Storage/testcase/VDScriptAst.h6
-rw-r--r--src/VBox/Storage/testcase/VDScriptInternal.h6
-rw-r--r--src/VBox/Storage/testcase/VDScriptStack.h6
14 files changed, 42 insertions, 42 deletions
diff --git a/src/VBox/Storage/VDBackends.h b/src/VBox/Storage/VDBackends.h
index 1811d13bc12..d97ab57fba0 100644
--- a/src/VBox/Storage/VDBackends.h
+++ b/src/VBox/Storage/VDBackends.h
@@ -19,8 +19,8 @@
* Header Files *
*******************************************************************************/
-#ifndef ___VDBackends_h
-#define ___VDBackends_h
+#ifndef VBOX_INCLUDED_SRC_Storage_VDBackends_h
+#define VBOX_INCLUDED_SRC_Storage_VDBackends_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -48,5 +48,5 @@ extern const VDCACHEBACKEND g_VciCacheBackend;
RT_C_DECLS_END
-#endif
+#endif /* !VBOX_INCLUDED_SRC_Storage_VDBackends_h */
diff --git a/src/VBox/Storage/VDBackendsInline.h b/src/VBox/Storage/VDBackendsInline.h
index e54adacd24b..b94f93b3498 100644
--- a/src/VBox/Storage/VDBackendsInline.h
+++ b/src/VBox/Storage/VDBackendsInline.h
@@ -19,8 +19,8 @@
* Header Files *
*******************************************************************************/
-#ifndef ___VDBackendsInline_h
-#define ___VDBackendsInline_h
+#ifndef VBOX_INCLUDED_SRC_Storage_VDBackendsInline_h
+#define VBOX_INCLUDED_SRC_Storage_VDBackendsInline_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -112,4 +112,4 @@ RT_C_DECLS_BEGIN
RT_C_DECLS_END
-#endif
+#endif /* !VBOX_INCLUDED_SRC_Storage_VDBackendsInline_h */
diff --git a/src/VBox/Storage/VDICore.h b/src/VBox/Storage/VDICore.h
index f50dfa5c096..169af591fbd 100644
--- a/src/VBox/Storage/VDICore.h
+++ b/src/VBox/Storage/VDICore.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef ___VDICore_h___
-#define ___VDICore_h___
+#ifndef VBOX_INCLUDED_SRC_Storage_VDICore_h
+#define VBOX_INCLUDED_SRC_Storage_VDICore_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -629,5 +629,5 @@ typedef enum VDIECONV
VDIECONV_F2H
} VDIECONV;
-#endif
+#endif /* !VBOX_INCLUDED_SRC_Storage_VDICore_h */
diff --git a/src/VBox/Storage/VDInternal.h b/src/VBox/Storage/VDInternal.h
index 70726f52123..c39e12ba398 100644
--- a/src/VBox/Storage/VDInternal.h
+++ b/src/VBox/Storage/VDInternal.h
@@ -19,8 +19,8 @@
* Header Files *
*********************************************************************************************************************************/
-#ifndef ___VDInternal_h
-#define ___VDInternal_h
+#ifndef VBOX_INCLUDED_SRC_Storage_VDInternal_h
+#define VBOX_INCLUDED_SRC_Storage_VDInternal_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -284,5 +284,5 @@ DECLHIDDEN(int) vdIoIterQueryStartNext(VDIOITER hVdIoIter, uint64_t *pu64St
DECLHIDDEN(int) vdIoIterQuerySegSizeByStart(VDIOITER hVdIoIter, uint64_t u64Start, size_t *pcRegSize);
DECLHIDDEN(int) vdIoIterAdvance(VDIOITER hVdIoIter, uint64_t cBlocksOrBytes);
-#endif /* !___VDInternal_h */
+#endif /* !VBOX_INCLUDED_SRC_Storage_VDInternal_h */
diff --git a/src/VBox/Storage/testcase/BuiltinTests.h b/src/VBox/Storage/testcase/BuiltinTests.h
index ad7062aafbb..6567f56da51 100644
--- a/src/VBox/Storage/testcase/BuiltinTests.h
+++ b/src/VBox/Storage/testcase/BuiltinTests.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef _BuiltinTests_h__
-#define _BuiltinTests_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_BuiltinTests_h
+#define VBOX_INCLUDED_SRC_testcase_BuiltinTests_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -44,4 +44,4 @@ extern TSTVDIOTESTENTRY const g_aVDIoTests[];
/** Number of entries in g_aVDIoTests. */
extern unsigned const g_cVDIoTests;
-#endif /* _BuiltinTests_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_BuiltinTests_h */
diff --git a/src/VBox/Storage/testcase/VDDefs.h b/src/VBox/Storage/testcase/VDDefs.h
index 42ffb01867c..0410ce0bac8 100644
--- a/src/VBox/Storage/testcase/VDDefs.h
+++ b/src/VBox/Storage/testcase/VDDefs.h
@@ -16,8 +16,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef __VDDefs_h__
-#define __VDDefs_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDDefs_h
+#define VBOX_INCLUDED_SRC_testcase_VDDefs_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -39,4 +39,4 @@ typedef enum VDIOTXDIR
VDIOTXDIR_INVALID
} VDIOTXDIR;
-#endif /* __VDDefs_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDDefs_h */
diff --git a/src/VBox/Storage/testcase/VDIoBackend.h b/src/VBox/Storage/testcase/VDIoBackend.h
index 9dac49225f0..b0856a9731b 100644
--- a/src/VBox/Storage/testcase/VDIoBackend.h
+++ b/src/VBox/Storage/testcase/VDIoBackend.h
@@ -16,8 +16,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef __VDIoBackend_h__
-#define __VDIoBackend_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDIoBackend_h
+#define VBOX_INCLUDED_SRC_testcase_VDIoBackend_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -93,4 +93,4 @@ DECLHIDDEN(int) VDIoBackendDumpToFile(PVDIOSTORAGE pIoStorage, const char *pszPa
int VDIoBackendTransfer(PVDIOSTORAGE pIoStorage, VDIOTXDIR enmTxDir, uint64_t off,
size_t cbTransfer, PRTSGBUF pSgBuf, void *pvUser, bool fSync);
-#endif /* __VDIoBackendMem_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDIoBackend_h */
diff --git a/src/VBox/Storage/testcase/VDIoBackendMem.h b/src/VBox/Storage/testcase/VDIoBackendMem.h
index 3a6db401f60..afe4f1306e2 100644
--- a/src/VBox/Storage/testcase/VDIoBackendMem.h
+++ b/src/VBox/Storage/testcase/VDIoBackendMem.h
@@ -16,8 +16,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef __VDIoBackendMem_h__
-#define __VDIoBackendMem_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDIoBackendMem_h
+#define VBOX_INCLUDED_SRC_testcase_VDIoBackendMem_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -79,4 +79,4 @@ int VDIoBackendMemTransfer(PVDIOBACKENDMEM pIoBackend, PVDMEMDISK pMemDisk,
VDIOTXDIR enmTxDir, uint64_t off, size_t cbTransfer,
PRTSGBUF pSgBuf, PFNVDIOCOMPLETE pfnComplete, void *pvUser);
-#endif /* __VDIoBackendMem_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDIoBackendMem_h */
diff --git a/src/VBox/Storage/testcase/VDIoRnd.h b/src/VBox/Storage/testcase/VDIoRnd.h
index f6a3ba349da..f09604076da 100644
--- a/src/VBox/Storage/testcase/VDIoRnd.h
+++ b/src/VBox/Storage/testcase/VDIoRnd.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef _VDIoRnd_h__
-#define _VDIoRnd_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDIoRnd_h
+#define VBOX_INCLUDED_SRC_testcase_VDIoRnd_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -56,4 +56,4 @@ void VDIoRndDestroy(PVDIORND pIoRnd);
int VDIoRndGetBuffer(PVDIORND pIoRnd, void **ppv, size_t cb);
uint32_t VDIoRndGetU32Ex(PVDIORND pIoRnd, uint32_t uMin, uint32_t uMax);
-#endif /* _VDIoRnd_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDIoRnd_h */
diff --git a/src/VBox/Storage/testcase/VDMemDisk.h b/src/VBox/Storage/testcase/VDMemDisk.h
index 9b422261892..99d22aeda6f 100644
--- a/src/VBox/Storage/testcase/VDMemDisk.h
+++ b/src/VBox/Storage/testcase/VDMemDisk.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef __VDMemDisk_h__
-#define __VDMemDisk_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDMemDisk_h
+#define VBOX_INCLUDED_SRC_testcase_VDMemDisk_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -130,4 +130,4 @@ int VDMemDiskReadFromFile(PVDMEMDISK pMemDisk, const char *pcszFilename);
*/
int VDMemDiskCmp(PVDMEMDISK pMemDisk, uint64_t off, size_t cbCmp, PRTSGBUF pSgBuf);
-#endif /* __VDMemDisk_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDMemDisk_h */
diff --git a/src/VBox/Storage/testcase/VDScript.h b/src/VBox/Storage/testcase/VDScript.h
index 003b724cd89..c1af8471b88 100644
--- a/src/VBox/Storage/testcase/VDScript.h
+++ b/src/VBox/Storage/testcase/VDScript.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef _VDScript_h__
-#define _VDScript_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDScript_h
+#define VBOX_INCLUDED_SRC_testcase_VDScript_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -223,4 +223,4 @@ DECLHIDDEN(int) VDScriptCtxAsRegister(VDSCRIPTCTX hScriptCtx, const char *pszTyp
PFNVDSCRIPTASREAD pfnRead, PFNVDSCRIPTASWRITE pfnWrite, void *pvUser,
uint32_t fFlags);
-#endif /* _VDScript_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDScript_h */
diff --git a/src/VBox/Storage/testcase/VDScriptAst.h b/src/VBox/Storage/testcase/VDScriptAst.h
index 7b22b126f55..78cda5bca1a 100644
--- a/src/VBox/Storage/testcase/VDScriptAst.h
+++ b/src/VBox/Storage/testcase/VDScriptAst.h
@@ -14,8 +14,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef ___VDScriptAst_h___
-#define ___VDScriptAst_h___
+#ifndef VBOX_INCLUDED_SRC_testcase_VDScriptAst_h
+#define VBOX_INCLUDED_SRC_testcase_VDScriptAst_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -581,5 +581,5 @@ DECLHIDDEN(PVDSCRIPTASTCORE) vdScriptAstNodeAlloc(VDSCRIPTASTCLASS enmClass);
*/
DECLHIDDEN(PVDSCRIPTASTIDE) vdScriptAstNodeIdeAlloc(size_t cchIde);
-#endif
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDScriptAst_h */
diff --git a/src/VBox/Storage/testcase/VDScriptInternal.h b/src/VBox/Storage/testcase/VDScriptInternal.h
index 38f318bcbbc..db4f5403ea7 100644
--- a/src/VBox/Storage/testcase/VDScriptInternal.h
+++ b/src/VBox/Storage/testcase/VDScriptInternal.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef _VDScriptInternal_h__
-#define _VDScriptInternal_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDScriptInternal_h
+#define VBOX_INCLUDED_SRC_testcase_VDScriptInternal_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -108,4 +108,4 @@ DECLHIDDEN(int) vdScriptCtxInterprete(PVDSCRIPTCTXINT pThis, const char *pszFn,
PVDSCRIPTARG paArgs, unsigned cArgs,
PVDSCRIPTARG pRet);
-#endif /* _VDScriptInternal_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDScriptInternal_h */
diff --git a/src/VBox/Storage/testcase/VDScriptStack.h b/src/VBox/Storage/testcase/VDScriptStack.h
index e60fa276dd8..042831cc795 100644
--- a/src/VBox/Storage/testcase/VDScriptStack.h
+++ b/src/VBox/Storage/testcase/VDScriptStack.h
@@ -15,8 +15,8 @@
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
-#ifndef _VDScriptStack_h__
-#define _VDScriptStack_h__
+#ifndef VBOX_INCLUDED_SRC_testcase_VDScriptStack_h
+#define VBOX_INCLUDED_SRC_testcase_VDScriptStack_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
@@ -143,4 +143,4 @@ DECLINLINE(void) vdScriptStackPop(PVDSCRIPTSTACK pStack)
pStack->cOnStack--;
}
-#endif /* _VDScriptStack_h__ */
+#endif /* !VBOX_INCLUDED_SRC_testcase_VDScriptStack_h */