You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
723 B
51 lines
723 B
#define app_copyright "Copyright 1999, app corporation"
|
|
|
|
; comment
|
|
|
|
[Setup]
|
|
AppName=MyApp
|
|
AppCopyright={#app_copyright}
|
|
WizardSmallImageFile=WizardSmallImageFile.bmp
|
|
OnlyBelowVersion=6.01
|
|
|
|
[Files]
|
|
Source: "app.exe"; DestDir: "{tmp}"; OnlyBelowVersion: 6.01
|
|
|
|
[INI]
|
|
Key: "keyname1"; String: "unterminated
|
|
Key: 'keyname2'; String: 'unterminated
|
|
|
|
[Registry]
|
|
Root: HKLM; ValueType: string
|
|
|
|
[CustomMessages]
|
|
keyname =Other tasks:'not string
|
|
|
|
[Messages]
|
|
keyname="{#app_copyright}"not string
|
|
|
|
[Code]
|
|
|
|
// comment
|
|
|
|
(* comment *)
|
|
|
|
{ comment }
|
|
|
|
{ *) comment }
|
|
|
|
(* } comment *)
|
|
|
|
(*
|
|
comment *)
|
|
|
|
{
|
|
comment }
|
|
|
|
function ShouldInstallComCtlUpdate: Boolean;
|
|
begin
|
|
Result := False;
|
|
Log('string');
|
|
IsEscaped('''good''', ''bad');
|
|
end;
|