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
552a9c9b
Commit
552a9c9b
authored
Feb 03, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of the SetODBCFolders standard action.
parent
3d361e64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
action.c
dlls/msi/action.c
+7
-1
No files found.
dlls/msi/action.c
View file @
552a9c9b
...
...
@@ -6081,6 +6081,12 @@ static UINT ACTION_RemoveShortcuts( MSIPACKAGE *package )
return
msi_unimplemented_action_stub
(
package
,
"RemoveShortcuts"
,
table
);
}
static
UINT
ACTION_SetODBCFolders
(
MSIPACKAGE
*
package
)
{
static
const
WCHAR
table
[]
=
{
'D'
,
'i'
,
'r'
,
'e'
,
'c'
,
't'
,
'o'
,
'r'
,
'y'
,
0
};
return
msi_unimplemented_action_stub
(
package
,
"SetODBCFolders"
,
table
);
}
static
UINT
ACTION_UnpublishComponents
(
MSIPACKAGE
*
package
)
{
static
const
WCHAR
table
[]
=
{
'P'
,
'u'
,
'b'
,
'l'
,
'i'
,
's'
,
'h'
,
'C'
,
'o'
,
'm'
,
'p'
,
'o'
,
'n'
,
'e'
,
'n'
,
't'
,
0
};
...
...
@@ -6185,7 +6191,7 @@ StandardActions[] =
{
szScheduleReboot
,
NULL
},
{
szSelfRegModules
,
ACTION_SelfRegModules
},
{
szSelfUnregModules
,
ACTION_SelfUnregModules
},
{
szSetODBCFolders
,
NULL
},
{
szSetODBCFolders
,
ACTION_SetODBCFolders
},
{
szStartServices
,
ACTION_StartServices
},
{
szStopServices
,
ACTION_StopServices
},
{
szUnpublishComponents
,
ACTION_UnpublishComponents
},
...
...
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