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
702adb37
Commit
702adb37
authored
Jan 26, 2007
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a (mostly empty) typelib for the MsiServer interface.
parent
7d1e21e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
126 additions
and
0 deletions
+126
-0
.gitignore
.gitignore
+1
-0
Makefile.in
dlls/msi/Makefile.in
+2
-0
msiserver.idl
dlls/msi/msiserver.idl
+123
-0
No files found.
.gitignore
View file @
702adb37
...
@@ -316,6 +316,7 @@ dlls/msi/instadvert.bmp
...
@@ -316,6 +316,7 @@ dlls/msi/instadvert.bmp
dlls/msi/instlocal.bmp
dlls/msi/instlocal.bmp
dlls/msi/libmsi.def
dlls/msi/libmsi.def
dlls/msi/msi.res
dlls/msi/msi.res
dlls/msi/msiserver.tlb
dlls/msi/sql.tab.c
dlls/msi/sql.tab.c
dlls/msi/sql.tab.h
dlls/msi/sql.tab.h
dlls/msi/tests/*.ok
dlls/msi/tests/*.ok
...
...
dlls/msi/Makefile.in
View file @
702adb37
...
@@ -47,6 +47,8 @@ C_SRCS = \
...
@@ -47,6 +47,8 @@ C_SRCS = \
upgrade.c
\
upgrade.c
\
where.c
where.c
IDL_TLB_SRCS
=
msiserver.idl
BISON_SRCS
=
\
BISON_SRCS
=
\
cond.y
\
cond.y
\
sql.y
sql.y
...
...
dlls/msi/msiserver.idl
0 → 100644
View file @
702adb37
/*
*
Copyright
(
C
)
2007
Mike
McCormack
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"unknwn.idl"
;
import
"wtypes.idl"
;
import
"objidl.idl"
;
import
"oaidl.idl"
;
[
uuid
(
000
C1092
-
0000
-
0000
-
C000
-
000000000046
),
version
(
1.0
)
]
library
WindowsInstaller
{
dispinterface
Installer
;
dispinterface
Record
;
dispinterface
Session
;
dispinterface
Database
;
dispinterface
SummaryInfo
;
dispinterface
View
;
dispinterface
UIPreview
;
dispinterface
FeatureInfo
;
dispinterface
RecordList
;
dispinterface
StringList
;
dispinterface
Product
;
dispinterface
Patch
;
[
uuid
(
000
C1090
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
Installer
{
properties
:
methods
:
}
[
uuid
(
000
C1093
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
Record
{
properties
:
methods
:
}
[
uuid
(
000
C1095
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
StringList
{
properties
:
methods
:
}
[
uuid
(
000
C1096
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
RecordList
{
properties
:
methods
:
}
[
uuid
(
000
C109A
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
UIPreview
{
properties
:
methods
:
}
[
uuid
(
000
C109B
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
SummaryInfo
{
properties
:
methods
:
}
[
uuid
(
000
C109C
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
View
{
properties
:
methods
:
}
[
uuid
(
000
C109D
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
Database
{
properties
:
methods
:
}
[
uuid
(
000
C109E
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
Session
{
properties
:
methods
:
}
[
uuid
(
000
C109F
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
FeatureInfo
{
properties
:
methods
:
}
[
uuid
(
000
C10A0
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
Product
{
properties
:
methods
:
}
[
uuid
(
000
C10A1
-
0000
-
0000
-
C000
-
000000000046
)
]
dispinterface
Patch
{
properties
:
methods
:
}
}
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