Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
df9d0140
Commit
df9d0140
authored
Feb 01, 2005
by
Juan Lang
Committed by
Alexandre Julliard
Feb 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partially implement AppSearch action.
parent
72213b18
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
Makefile.in
dlls/msi/Makefile.in
+1
-0
action.c
dlls/msi/action.c
+3
-0
action.h
dlls/msi/action.h
+1
-1
appsearch.c
dlls/msi/appsearch.c
+0
-0
No files found.
dlls/msi/Makefile.in
View file @
df9d0140
...
...
@@ -8,6 +8,7 @@ EXTRALIBS = -luuid $(LIBUNICODE)
C_SRCS
=
\
action.c
\
appsearch.c
\
create.c
\
custom.c
\
dialog.c
\
...
...
dlls/msi/action.c
View file @
df9d0140
...
...
@@ -157,6 +157,8 @@ const static WCHAR szForceReboot[] =
{
'F'
,
'o'
,
'r'
,
'c'
,
'e'
,
'R'
,
'e'
,
'b'
,
'o'
,
'o'
,
't'
,
0
};
const
static
WCHAR
szResolveSource
[]
=
{
'R'
,
'e'
,
's'
,
'o'
,
'l'
,
'v'
,
'e'
,
'S'
,
'o'
,
'u'
,
'r'
,
'c'
,
'e'
,
0
};
const
static
WCHAR
szAppSearch
[]
=
{
'A'
,
'p'
,
'p'
,
'S'
,
'e'
,
'a'
,
'r'
,
'c'
,
'h'
,
0
};
struct
_actions
{
LPCWSTR
action
;
...
...
@@ -164,6 +166,7 @@ struct _actions {
};
struct
_actions
StandardActions
[]
=
{
{
szAppSearch
,
ACTION_AppSearch
},
{
szCostFinalize
,
ACTION_CostFinalize
},
{
szCostInitialize
,
ACTION_CostInitialize
},
{
szCreateFolders
,
ACTION_CreateFolders
},
...
...
dlls/msi/action.h
View file @
df9d0140
...
...
@@ -101,7 +101,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action);
void
ACTION_FinishCustomActions
(
MSIPACKAGE
*
package
);
UINT
ACTION_CustomAction
(
MSIPACKAGE
*
package
,
const
WCHAR
*
action
,
BOOL
execute
);
void
ACTION_UpdateComponentStates
(
MSIPACKAGE
*
package
,
LPCWSTR
szFeature
);
UINT
ACTION_AppSearch
(
MSIPACKAGE
*
package
);
DWORD
deformat_string
(
MSIPACKAGE
*
package
,
LPCWSTR
ptr
,
WCHAR
**
data
);
WCHAR
*
load_dynamic_stringW
(
MSIRECORD
*
row
,
INT
index
);
...
...
dlls/msi/appsearch.c
0 → 100644
View file @
df9d0140
This diff is collapsed.
Click to expand it.
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