WinampFactory.h 386 B

123456789101112131415161718
  1. #pragma once
  2. #include <unknwn.h>
  3. class WinampFactory: public IClassFactory
  4. {
  5. public:
  6. WinampFactory();
  7. virtual ~WinampFactory();
  8. HRESULT __stdcall QueryInterface(REFIID riid, void ** ppAny);
  9. ULONG __stdcall AddRef();
  10. ULONG __stdcall Release();
  11. HRESULT __stdcall CreateInstance(LPUNKNOWN pUnkOuter, REFIID riid, void ** ppAny);
  12. HRESULT __stdcall LockServer(BOOL fLock);
  13. };