Skip to content

Commit 5fe5fa6

Browse files
committed
Remove __cdecl
The `__cdecl` for `main()` was once needed to workaround bug in some versions of Wine. Current Wine versions do not have this bug anymore. This change is needed to fix 64-bit VST plugins. Closes: psycha0s#109
1 parent e44976c commit 5fe5fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/host/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using namespace Airwave;
99

1010

11-
int __cdecl main(int argc, const char* argv[])
11+
int main(int argc, const char* argv[])
1212
{
1313
if(argc != 5) {
1414
fprintf(stderr, "Airwave host endpoint, version " VERSION_STRING);

0 commit comments

Comments
 (0)