forked from mia/Aegisub
2d3e505193
The upgrade installer still needs some updating as it only supports upgrading from 2.1.8 Originally committed to SVN as r6344.
124 lines
4.6 KiB
Text
124 lines
4.6 KiB
Text
[Code]
|
|
(*
|
|
; Copyright (c) 2007-2009, Niels Martin Hansen
|
|
;
|
|
; Redistribution and use in source and binary forms, with or without
|
|
; modification, are permitted provided that the following conditions are met:
|
|
;
|
|
; * Redistributions of source code must retain the above copyright notice,
|
|
; this list of conditions and the following disclaimer.
|
|
; * Redistributions in binary form must reproduce the above copyright notice,
|
|
; this list of conditions and the following disclaimer in the documentation
|
|
; and/or other materials provided with the distribution.
|
|
; * Neither the name of the Aegisub Group nor the names of its contributors
|
|
; may be used to endorse or promote products derived from this software
|
|
; without specific prior written permission.
|
|
;
|
|
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
; POSSIBILITY OF SUCH DAMAGE.
|
|
;
|
|
; -----------------------------------------------------------------------------
|
|
;
|
|
; AEGISUB
|
|
;
|
|
; Website: http://www.aegisub.org/
|
|
; Contact: mailto:nielsm@indvikleren.dk
|
|
;
|
|
*)
|
|
|
|
// IShellLink interface and CLSID taken from sample
|
|
const
|
|
MAX_PATH = 260;
|
|
CLSID_ShellLink = '{00021401-0000-0000-C000-000000000046}';
|
|
|
|
type
|
|
TWin32FileTime = record
|
|
dwLowDateTime: DWord;
|
|
dwHighDateTime: DWord;
|
|
end;
|
|
|
|
TWin32FindData = record
|
|
dwFileAttributes: DWord;
|
|
ftCreationTime: TWin32FileTime;
|
|
ftLastAccessTime: TWin32FileTime;
|
|
ftLastWriteTime: TWin32FileTime;
|
|
nFileSizeHigh: DWord;
|
|
nFileSizeLow: DWord;
|
|
dwReserved0: DWord;
|
|
dwReserved1: DWord;
|
|
cFileName: array[0..MAX_PATH-1] of WideChar;
|
|
cAlternateFileName: array[0..13] of WideChar;
|
|
end;
|
|
|
|
IShellLink = interface(IUnknown)
|
|
'{000214F9-0000-0000-C000-000000000046}'
|
|
function GetPath(pszFile: string; cchMaxPath: Integer; var pfd: TWin32FindData; fFlags: DWord): HResult;
|
|
procedure Dummy2; // GetIDList(PIDLIST_ABSOLUTE)
|
|
procedure Dummy3; // SetIDList(PCIDLIST_ABSOLUTE)
|
|
function GetDescription(pszName: String; cchMaxName: Integer): HResult;
|
|
function SetDescription(pszName: String): HResult;
|
|
function GetWorkingDirectory(pszDir: String; cchMaxPath: Integer): HResult;
|
|
function SetWorkingDirectory(pszDir: String): HResult;
|
|
function GetArguments(pszArgs: String; cchMaxPath: Integer): HResult;
|
|
function SetArguments(pszArgs: String): HResult;
|
|
function GetHotkey(var pwHotkey: Word): HResult;
|
|
function SetHotkey(wHotkey: Word): HResult;
|
|
function GetShowCmd(out piShowCmd: Integer): HResult;
|
|
function SetShowCmd(iShowCmd: Integer): HResult;
|
|
function GetIconLocation(pszIconPath: String; cchIconPath: Integer;
|
|
out piIcon: Integer): HResult;
|
|
function SetIconLocation(pszIconPath: String; iIcon: Integer): HResult;
|
|
function SetRelativePath(pszPathRel: String; dwReserved: DWORD): HResult;
|
|
function Resolve(Wnd: HWND; fFlags: DWORD): HResult;
|
|
function SetPath(pszFile: String): HResult;
|
|
end;
|
|
|
|
IPersist = interface(IUnknown)
|
|
'{0000010C-0000-0000-C000-000000000046}'
|
|
function GetClassID(var classID: TGUID): HResult;
|
|
end;
|
|
|
|
IPersistFile = interface(IPersist)
|
|
'{0000010B-0000-0000-C000-000000000046}'
|
|
function IsDirty: HResult;
|
|
function Load(pszFileName: String; dwMode: Longint): HResult;
|
|
function Save(pszFileName: String; fRemember: BOOL): HResult;
|
|
function SaveCompleted(pszFileName: String): HResult;
|
|
function GetCurFile(out pszFileName: String): HResult;
|
|
end;
|
|
|
|
|
|
function ReadShellLink(LinkFileName: string): string;
|
|
var
|
|
Unk: IUnknown;
|
|
PF: IPersistFile;
|
|
SL: IShellLink;
|
|
fnd: TWin32FindData;
|
|
linkpath: string;
|
|
begin
|
|
try
|
|
Unk := CreateComObject(StringToGuid(CLSID_ShellLink));
|
|
|
|
PF := IPersistFile(Unk);
|
|
OleCheck(PF.Load(LinkFileName, 0));
|
|
|
|
SL := IShellLink(Unk);
|
|
SetLength(linkpath, MAX_PATH);
|
|
OleCheck(SL.GetPath(linkpath, MAX_PATH, fnd, 0));
|
|
|
|
Result := linkpath;
|
|
except
|
|
Log('Error reading shell link "' + LinkFileName + '": ' + GetExceptionMessage);
|
|
Result := '';
|
|
end;
|
|
end;
|
|
|