@@ -147,13 +147,13 @@ Const AUTOPROXY_DETECT_TYPE_DNS = 2
147
147
#If VBA7 Then
148
148
149
149
' 64-bit Mac (2016)
150
- Private Declare PtrSafe Function utc_popen Lib "libc .dylib " Alias "popen " _
150
+ Private Declare PtrSafe Function utc_popen Lib "/ usr / lib / libc .dylib " Alias "popen " _
151
151
(ByVal utc_Command As String , ByVal utc_Mode As String ) As LongPtr
152
- Private Declare PtrSafe Function utc_pclose Lib "libc .dylib " Alias "pclose " _
152
+ Private Declare PtrSafe Function utc_pclose Lib "/ usr / lib / libc .dylib " Alias "pclose " _
153
153
(ByVal utc_File As LongPtr ) As LongPtr
154
- Private Declare PtrSafe Function utc_fread Lib "libc .dylib " Alias "fread " _
154
+ Private Declare PtrSafe Function utc_fread Lib "/ usr / lib / libc .dylib " Alias "fread " _
155
155
(ByVal utc_Buffer As String , ByVal utc_Size As LongPtr , ByVal utc_Number As LongPtr , ByVal utc_File As LongPtr ) As LongPtr
156
- Private Declare PtrSafe Function utc_feof Lib "libc .dylib " Alias "feof " _
156
+ Private Declare PtrSafe Function utc_feof Lib "/ usr / lib / libc .dylib " Alias "feof " _
157
157
(ByVal utc_File As LongPtr ) As LongPtr
158
158
159
159
#Else
@@ -256,10 +256,10 @@ Public JsonOptions As json_Options
256
256
257
257
#If Mac Then
258
258
#If VBA7 Then
259
- Private Declare PtrSafe Function web_popen Lib "libc .dylib " Alias "popen " (ByVal web_Command As String , ByVal web_Mode As String ) As LongPtr
260
- Private Declare PtrSafe Function web_pclose Lib "libc .dylib " Alias "pclose " (ByVal web_File As LongPtr ) As LongPtr
261
- Private Declare PtrSafe Function web_fread Lib "libc .dylib " Alias "fread " (ByVal web_OutStr As String , ByVal web_Size As LongPtr , ByVal web_Items As LongPtr , ByVal web_Stream As LongPtr ) As LongPtr
262
- Private Declare PtrSafe Function web_feof Lib "libc .dylib " Alias "feof " (ByVal web_File As LongPtr ) As LongPtr
259
+ Private Declare PtrSafe Function web_popen Lib "/ usr / lib / libc .dylib " Alias "popen " (ByVal web_Command As String , ByVal web_Mode As String ) As LongPtr
260
+ Private Declare PtrSafe Function web_pclose Lib "/ usr / lib / libc .dylib " Alias "pclose " (ByVal web_File As LongPtr ) As LongPtr
261
+ Private Declare PtrSafe Function web_fread Lib "/ usr / lib / libc .dylib " Alias "fread " (ByVal web_OutStr As String , ByVal web_Size As LongPtr , ByVal web_Items As LongPtr , ByVal web_Stream As LongPtr ) As LongPtr
262
+ Private Declare PtrSafe Function web_feof Lib "/ usr / lib / libc .dylib " Alias "feof " (ByVal web_File As LongPtr ) As LongPtr
263
263
#Else
264
264
Private Declare Function web_popen Lib "libc .dylib " Alias "popen " (ByVal web_Command As String , ByVal web_Mode As String ) As Long
265
265
Private Declare Function web_pclose Lib "libc .dylib " Alias "pclose " (ByVal web_File As Long ) As Long
@@ -1977,7 +1977,7 @@ Private Function web_GetUrlEncodedKeyValue(Key As Variant, Value As Variant, Opt
1977
1977
End Function
1978
1978
1979
1979
''
1980
- ' VBA-JSON v2.3.0
1980
+ ' VBA-JSON v2.3.1
1981
1981
' (c) Tim Hall - https://github.com/VBA-tools/VBA-JSON
1982
1982
'
1983
1983
' JSON Converter for VBA
@@ -2726,7 +2726,7 @@ Private Function json_BufferToString(ByRef json_Buffer As String, ByVal json_Buf
2726
2726
End Function
2727
2727
2728
2728
''
2729
- ' VBA-UTC v1.0.5
2729
+ ' VBA-UTC v1.0.6
2730
2730
' (c) Tim Hall - https://github.com/VBA-tools/VBA-UtcConverter
2731
2731
'
2732
2732
' UTC/ISO 8601 Converter for VBA
0 commit comments