blob: 4d94aa5ae7380b16ee55d72663fb60bbf70de8b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "ExComponent.h" // the component we're registering is defined here
ExComponent exComponent; // our component
// Winamp GetProcAddress()'s this after loading your w5s file
extern "C" __declspec(dllexport) ifc_wa5component *GetWinamp5SystemComponent()
{
return &exComponent;
}
|