contrib: fix implicit function decleration in win symbol check

```bash
test3.c: In function 'main':
test3.c:6:21: warning: implicit declaration of function 'CoFreeUnusedLibrariesEx' [-Wimplicit-function-declaration]
    6 |                     CoFreeUnusedLibrariesEx(0,0);
```
24.x
fanquake 3 years ago
parent b9894a1308
commit e4e9dd3a28
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

@ -187,7 +187,7 @@ class TestSymbolChecks(unittest.TestCase):
executable = 'test3.exe' executable = 'test3.exe'
with open(source, 'w', encoding="utf8") as f: with open(source, 'w', encoding="utf8") as f:
f.write(''' f.write('''
#include <windows.h> #include <combaseapi.h>
int main() int main()
{ {

Loading…
Cancel
Save