blob: c96309973e7117178e1a483ecd0e4803879c5fcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "main.h"
#include "resource.h"
#include "../winamp/in2.h"
#include "api__in_mp4.h"
int infoDlg(const wchar_t *fn, HWND hwnd)
{ // this has been made obsolete by the below.
return 0;
}
extern "C"
{
// 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)
// if returning 1, remember to implement winampGetExtendedFileInfo("formatinformation")!
__declspec(dllexport) int winampUseUnifiedFileInfoDlg(const wchar_t * fn)
{
return 1;
}
// no advanced pane in this plugin :)
};
|