w5s.cpp 287 B

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