SimpleLoader.h 370 B

1234567891011121314
  1. #ifndef NULLSOFT_PLLOADEX_SIMPLELOADER_H
  2. #define NULLSOFT_PLLOADEX_SIMPLELOADER_H
  3. #include "../playlist/ifc_playlistloader.h"
  4. class SimpleLoader : public ifc_playlistloader
  5. {
  6. public:
  7. int Load(const wchar_t *filename, ifc_playlistloadercallback *playlist);
  8. protected:
  9. RECVS_DISPATCH; // all Wasabi objects implementing a Dispatchable interface require this
  10. };
  11. #endif