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
451ef3a9
Commit
451ef3a9
authored
Nov 02, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for MsiAdvertiseScriptA/W.
parent
50684c15
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
2 deletions
+40
-2
msi.c
dlls/msi/msi.c
+22
-0
msi.spec
dlls/msi/msi.spec
+2
-2
msi.h
include/msi.h
+16
-0
No files found.
dlls/msi/msi.c
View file @
451ef3a9
...
...
@@ -2008,3 +2008,25 @@ UINT WINAPI MsiGetFileHashA( LPCSTR szFilePath, DWORD dwOptions,
FIXME
(
"%s %08lx %p
\n
"
,
debugstr_a
(
szFilePath
),
dwOptions
,
pHash
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* MsiAdvertiseScriptW [MSI.@]
*/
UINT
WINAPI
MsiAdvertiseScriptW
(
LPCWSTR
szScriptFile
,
DWORD
dwFlags
,
PHKEY
phRegData
,
BOOL
fRemoveItems
)
{
FIXME
(
"%s %08lx %p %d
\n
"
,
debugstr_w
(
szScriptFile
),
dwFlags
,
phRegData
,
fRemoveItems
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* MsiAdvertiseScriptA [MSI.@]
*/
UINT
WINAPI
MsiAdvertiseScriptA
(
LPCSTR
szScriptFile
,
DWORD
dwFlags
,
PHKEY
phRegData
,
BOOL
fRemoveItems
)
{
FIXME
(
"%s %08lx %p %d
\n
"
,
debugstr_a
(
szScriptFile
),
dwFlags
,
phRegData
,
fRemoveItems
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/msi/msi.spec
View file @
451ef3a9
...
...
@@ -169,8 +169,8 @@
173 stdcall MsiGetComponentPathW(wstr wstr ptr ptr)
174 stdcall MsiApplyPatchA(str str long str)
175 stdcall MsiApplyPatchW(wstr wstr long wstr)
176 st
ub MsiAdvertiseScriptA
177 st
ub MsiAdvertiseScriptW
176 st
dcall MsiAdvertiseScriptA(str long ptr long)
177 st
dcall MsiAdvertiseScriptW(wstr long ptr long)
178 stub MsiGetPatchInfoA
179 stub MsiGetPatchInfoW
180 stdcall MsiEnumPatchesA(str long ptr ptr ptr)
...
...
include/msi.h
View file @
451ef3a9
...
...
@@ -152,6 +152,18 @@ typedef enum tagADVERTISEFLAGS
ADVERTISEFLAGS_USERASSIGN
=
1
}
ADVERTISEFLAGS
;
typedef
enum
tagSCRIPTFLAGS
{
SCRIPTFLAGS_CACHEINFO
=
1
,
SCRIPTFLAGS_SHORTCUTS
=
4
,
SCRIPTFLAGS_MACHINEASSIGN
=
8
,
SCRIPTFLAGS_REGDATA_APPINFO
=
0x10
,
SCRIPTFLAGS_REGDATA_CNFGINFO
=
0x20
,
SCRIPTFLAGS_VALIDATE_TRANSFORMS_LIST
=
0x40
,
SCRIPTFLAGS_REGDATA_CLASSINFO
=
0x80
,
SCRIPTFLAGS_REGDATA_EXTENSIONINFO
=
0x100
,
}
SCRIPTFLAGS
;
typedef
enum
tagINSTALLTYPE
{
INSTALLTYPE_DEFAULT
=
0
,
...
...
@@ -540,6 +552,10 @@ UINT WINAPI MsiGetFileHashA(LPCSTR, DWORD, PMSIFILEHASHINFO);
UINT
WINAPI
MsiGetFileHashW
(
LPCWSTR
,
DWORD
,
PMSIFILEHASHINFO
);
#define MsiGetFileHash WINELIB_NAME_AW(MsiGetFileHash)
UINT
WINAPI
MsiAdvertiseScriptA
(
LPCSTR
,
DWORD
,
PHKEY
,
BOOL
);
UINT
WINAPI
MsiAdvertiseScriptW
(
LPCWSTR
,
DWORD
,
PHKEY
,
BOOL
);
#define MsiAdvertiseScript WINELIB_NAME_AW(MsiAdvertiseScript)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
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