Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
48908c13
Commit
48908c13
authored
Jan 03, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove the unused CurrentlyScripting field from MSISCRIPT.
parent
fcb924c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
action.c
dlls/msi/action.c
+0
-7
msipriv.h
dlls/msi/msipriv.h
+0
-1
No files found.
dlls/msi/action.c
View file @
48908c13
...
...
@@ -3178,8 +3178,6 @@ static UINT ACTION_RemoveRegistryValues( MSIPACKAGE *package )
static
UINT
ACTION_InstallInitialize
(
MSIPACKAGE
*
package
)
{
package
->
script
->
CurrentlyScripting
=
TRUE
;
return
ERROR_SUCCESS
;
}
...
...
@@ -5291,9 +5289,6 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
UINT
rc
;
WCHAR
*
remove
;
/* turn off scheduling */
package
->
script
->
CurrentlyScripting
=
FALSE
;
/* first do the same as an InstallExecute */
rc
=
ACTION_InstallExecute
(
package
);
if
(
rc
!=
ERROR_SUCCESS
)
...
...
@@ -7820,8 +7815,6 @@ UINT MSI_InstallPackage( MSIPACKAGE *package, LPCWSTR szPackagePath,
else
rc
=
ACTION_ProcessExecSequence
(
package
,
FALSE
);
package
->
script
->
CurrentlyScripting
=
FALSE
;
/* process the ending type action */
if
(
rc
==
ERROR_SUCCESS
)
ACTION_PerformActionSequence
(
package
,
-
1
);
...
...
dlls/msi/msipriv.h
View file @
48908c13
...
...
@@ -686,7 +686,6 @@ typedef struct tagMSISCRIPT
LPWSTR
*
Actions
[
SCRIPT_MAX
];
UINT
ActionCount
[
SCRIPT_MAX
];
BOOL
ExecuteSequenceRun
;
BOOL
CurrentlyScripting
;
UINT
InWhatSequence
;
LPWSTR
*
UniqueActions
;
UINT
UniqueActionsCount
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment