lsteamclient: Get rid of DECLSPEC_HIDDEN.

This commit is contained in:
Rémi Bernon 2023-12-01 14:34:34 +01:00 committed by Arkadiusz Hiler
parent 1e55f9de08
commit 60d50a11e6
3 changed files with 200 additions and 200 deletions

View file

@ -1344,7 +1344,7 @@ with open("steamclient_generated.h", "w") as file:
out(u'/* This file is auto-generated, do not edit. */\n\n')
for _, klass in sorted(all_classes.items()):
out(f"extern struct w_steam_iface *create_win{klass.full_name}(void *) DECLSPEC_HIDDEN;\n")
out(f"extern struct w_steam_iface *create_win{klass.full_name}(void *);\n")
with open("steamclient_generated.c", "w") as file: