1
0

infobox.cpp 558 B

1234567891011121314151617181920
  1. #include "main.h"
  2. #include "resource.h"
  3. #include "../winamp/in2.h"
  4. #include "api__in_mp4.h"
  5. int infoDlg(const wchar_t *fn, HWND hwnd)
  6. { // this has been made obsolete by the below.
  7. return 0;
  8. }
  9. extern "C"
  10. {
  11. // return 1 if you want winamp to show it's own file info dialogue, 0 if you want to show your own (via In_Module.InfoBox)
  12. // if returning 1, remember to implement winampGetExtendedFileInfo("formatinformation")!
  13. __declspec(dllexport) int winampUseUnifiedFileInfoDlg(const wchar_t * fn)
  14. {
  15. return 1;
  16. }
  17. // no advanced pane in this plugin :)
  18. };