summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/string/base64.h
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2020-07-08 21:13:30 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2020-07-08 21:13:30 +0000
commit36e905f01e90ce112d8b49fa8e8e4541adfc050e (patch)
tree26f59e0c1413f0a25be4e50c4ccfd435eedb4737 /src/VBox/Runtime/common/string/base64.h
parent8e3be78c7a2ec8870dd0e40d2fd33c9519585a34 (diff)
downloadVirtualBox-svn-36e905f01e90ce112d8b49fa8e8e4541adfc050e.tar.gz
*: Use DECL_HIDDEN_DATA for data, DECLHIDDEN will soon be exclusively for functions. bugref:9794
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@85124 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/string/base64.h')
-rw-r--r--src/VBox/Runtime/common/string/base64.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/VBox/Runtime/common/string/base64.h b/src/VBox/Runtime/common/string/base64.h
index 6dd2f5d12fa..fc4ca955280 100644
--- a/src/VBox/Runtime/common/string/base64.h
+++ b/src/VBox/Runtime/common/string/base64.h
@@ -49,10 +49,10 @@
/*********************************************************************************************************************************
* Global Variables *
*********************************************************************************************************************************/
-extern DECLHIDDEN(const uint8_t) g_au8rtBase64CharToVal[256];
-extern DECLHIDDEN(const char) g_szrtBase64ValToChar[64+1];
-extern DECLHIDDEN(const size_t) g_acchrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1];
-extern DECLHIDDEN(const char) g_aachrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1][2];
+extern DECL_HIDDEN_DATA(const uint8_t) g_au8rtBase64CharToVal[256];
+extern DECL_HIDDEN_DATA(const char) g_szrtBase64ValToChar[64+1];
+extern DECL_HIDDEN_DATA(const size_t) g_acchrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1];
+extern DECL_HIDDEN_DATA(const char) g_aachrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1][2];
/*********************************************************************************************************************************