# HG changeset patch # User Matti Hamalainen # Date 1578263187 -7200 # Node ID 254828e9213ba2026f53e28b4eef2966e664dfb3 # Parent 05bbe428a0abad0a2667df48cafda4dfb1783214 Make sidlib_stil_fields[] public. diff -r 05bbe428a0ab -r 254828e9213b sidlib.c --- a/sidlib.c Mon Jan 06 00:05:16 2020 +0200 +++ b/sidlib.c Mon Jan 06 00:26:27 2020 +0200 @@ -735,7 +735,7 @@ }; -static const char *sidlib_stil_fields[STF_LAST] = +const char *sidlib_stil_fields[STF_LAST] = { "NAME", "AUTHOR", diff -r 05bbe428a0ab -r 254828e9213b sidlib.h --- a/sidlib.h Mon Jan 06 00:05:16 2020 +0200 +++ b/sidlib.h Mon Jan 06 00:26:27 2020 +0200 @@ -144,6 +144,11 @@ // +// Globals +// +const char *sidlib_stil_fields[STF_LAST]; + +// // Functions // int sidlib_read_sid_file(th_ioctx *ctx, SIDLibPSIDHeader *psid, const BOOL newSLDB);