9
9278707
Unregistered / Unconfirmed
GUEST, unregistred user!
我要调用FTKernelAPI.dll提取种子信息,但是无论如何取不到种子的句柄,请高手指教!代码如下:
type
TOpenTorrent = function(lpszFileName: LPCTSTR;nCodePage:
UINT=CP_ACP;lpszDesKey:LPCTSTR=nil): hwnd;
stdcall;
var
OpenTor: TOpenTorrent;
procedure TForm1.Button1Click(Sender: TObject);
var
DllHdl: hwnd;
HTorrentFile: hwnd;
m_strTorrentFile: LPCTSTR;
begin
//.torrent种子地址
m_strTorrentFile := LPCTSTR(Edit1.Text);
DllHdl := LoadLibrary('FTKernelAPI.dll');
if DllHdl <> 0 then
try
@OpenTor := GetProcAddress(DllHdl,'FTK_Torrent_Open');
HTorrentFile := OpenTor(m_strTorrentFile,CP_ACP,'');
//htorrentfile始终为0
ListBox1.Items.Add('{DllHandle:}'+inttostr(DllHdl));
ListBox1.Items.Add('{TorrentHandle:}'+inttostr(HTorrentFile));
finally
FreeLibrary(DllHdl);
end;
end;
FTKernelAPI.dll下载地址http://www.tomore.com/1/32479.html
type
TOpenTorrent = function(lpszFileName: LPCTSTR;nCodePage:
UINT=CP_ACP;lpszDesKey:LPCTSTR=nil): hwnd;
stdcall;
var
OpenTor: TOpenTorrent;
procedure TForm1.Button1Click(Sender: TObject);
var
DllHdl: hwnd;
HTorrentFile: hwnd;
m_strTorrentFile: LPCTSTR;
begin
//.torrent种子地址
m_strTorrentFile := LPCTSTR(Edit1.Text);
DllHdl := LoadLibrary('FTKernelAPI.dll');
if DllHdl <> 0 then
try
@OpenTor := GetProcAddress(DllHdl,'FTK_Torrent_Open');
HTorrentFile := OpenTor(m_strTorrentFile,CP_ACP,'');
//htorrentfile始终为0
ListBox1.Items.Add('{DllHandle:}'+inttostr(DllHdl));
ListBox1.Items.Add('{TorrentHandle:}'+inttostr(HTorrentFile));
finally
FreeLibrary(DllHdl);
end;
end;
FTKernelAPI.dll下载地址http://www.tomore.com/1/32479.html