00001 00018 00019 #include <windows.h> 00020 00021 #include "AOut.h" 00022 00023 static AOut the_output; 00024 00025 extern "C" 00026 { 00027 #ifdef __BORLANDC__ 00028 __declspec (dllexport) Out_Module * __stdcall winampGetOutModule() 00029 #else // MSVC 00030 __declspec (dllexport) Out_Module * winampGetOutModule() 00031 #endif 00032 { 00033 return the_output.GetOutModule(); 00034 } 00035 } 00036