Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 89f2db6

Browse files
author
livecodeali
committed
[[ Browser ]] Remove MC_DLLEXPORT_DEF from non-MC_DLLEXPORTed functions
1 parent 9b61313 commit 89f2db6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

libbrowser/src/libbrowser_value.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,6 @@ bool MCBrowserListGetType(MCBrowserListRef p_list, uint32_t p_index, MCBrowserVa
463463
return p_list->GetType(p_index, r_type);
464464
}
465465

466-
MC_BROWSER_DLLEXPORT_DEF
467466
bool MCBrowserListSetValue(MCBrowserListRef p_list, uint32_t p_index, const MCBrowserValue &p_value)
468467
{
469468
if (p_list == nil)
@@ -526,7 +525,6 @@ bool MCBrowserListSetDictionary(MCBrowserListRef p_list, uint32_t p_index, MCBro
526525
return p_list->SetDictionary(p_index, p_value);
527526
}
528527

529-
MC_BROWSER_DLLEXPORT_DEF
530528
bool MCBrowserListAppendValue(MCBrowserListRef p_list, const MCBrowserValue &p_value)
531529
{
532530
if (p_list == nil)
@@ -589,7 +587,6 @@ bool MCBrowserListAppendDictionary(MCBrowserListRef p_list, MCBrowserDictionaryR
589587
return p_list->AppendDictionary(p_value);
590588
}
591589

592-
MC_BROWSER_DLLEXPORT_DEF
593590
bool MCBrowserListGetValue(MCBrowserListRef p_list, uint32_t p_index, MCBrowserValue &r_value)
594591
{
595592
if (p_list == nil)
@@ -953,7 +950,6 @@ bool MCBrowserDictionaryGetType(MCBrowserDictionaryRef p_dictionary, const char
953950
return p_dictionary->GetType(p_key, r_type);
954951
}
955952

956-
MC_BROWSER_DLLEXPORT_DEF
957953
bool MCBrowserDictionarySetValue(MCBrowserDictionaryRef p_dictionary, const char *p_key, const MCBrowserValue &p_value)
958954
{
959955
if (p_dictionary == nil)
@@ -962,7 +958,6 @@ bool MCBrowserDictionarySetValue(MCBrowserDictionaryRef p_dictionary, const char
962958
return p_dictionary->SetValue(p_key, p_value);
963959
}
964960

965-
MC_BROWSER_DLLEXPORT_DEF
966961
bool MCBrowserDictionaryGetValue(MCBrowserDictionaryRef p_dictionary, const char *p_key, MCBrowserValue &r_value)
967962
{
968963
if (p_dictionary == nil)

0 commit comments

Comments
 (0)