I've this error in this procedure :
procedure TD2VProject.InitialiseMPEG2DecDll;
begin
MPEG2DecDllHandle := LoadLibrary( PChar(MPEG2DecDllFileName) );
if MPEG2DecDllHandle <> 0 then
begin
@OpenMPEG2Dll := GetProcAddress(MPEG2DecDllHandle, 'openMPEG2Source');
@CloseVideoDll := GetProcAddress(MPEG2DecDllHandle, 'closeVideo');
@GetRGBFrameDll := GetProcAddress(MPEG2DecDllHandle, 'getRGBFrame');
end;
end;
It works fine with Delphi 7 !