Случайно набрел в
интернете. Может кому пригодиться.
Восстановление паролей в Opera. Восстанавливает пароли из файла: wand.dat (C:\documents and settings\%username%\Application Data\Opera\Opera)
Supported Opera Versions: <= 11.50v / build: 1074
Требуется
GWinCryp.pass
Код:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | program opera;
uses
windows,
messages,
GWinCryp;
type
{$EXTERNALSYM HDROP}
HDROP = Longint ;
PPWideChar = ^ PWideChar ;
const
shell32 = 'shell32.dll' ;
{$EXTERNALSYM DragQueryFile}
function DragQueryFile(Drop: HDROP; FileIndex: UINT; FileName: PChar ; cb: UINT): UINT; stdcall; external shell32 name 'DragQueryFileA' ;
{$EXTERNALSYM DragFinish}
procedure DragFinish(Drop: HDROP); stdcall; external shell32 name 'DragFinish' ;
{$EXTERNALSYM DragAcceptFiles}
procedure DragAcceptFiles(Wnd: HWND; Accept: BOOL); stdcall; external shell32 name 'DragAcceptFiles' ;
|