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
4d7b7b71
Commit
4d7b7b71
authored
Apr 22, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inseng.idl: Added new IDL.
parent
6238adc8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
9 deletions
+33
-9
Makefile.in
dlls/inseng/Makefile.in
+1
-1
inseng_classes.idl
dlls/inseng/inseng_classes.idl
+23
-0
inseng_main.c
dlls/inseng/inseng_main.c
+2
-2
Makefile.in
include/Makefile.in
+1
-0
inseng.idl
include/inseng.idl
+6
-6
No files found.
dlls/inseng/Makefile.in
View file @
4d7b7b71
...
...
@@ -3,4 +3,4 @@ IMPORTS = uuid ole32 advapi32
C_SRCS
=
inseng_main.c
IDL_SRCS
=
inseng.idl
IDL_SRCS
=
inseng
_classes
.idl
dlls/inseng/inseng_classes.idl
0 → 100644
View file @
4d7b7b71
/*
*
COM
Classes
for
inseng
*
*
Copyright
2010
Alexandre
Julliard
*
*
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
*/
#
pragma
makedep
register
#
include
"inseng.idl"
dlls/inseng/inseng_main.c
View file @
4d7b7b71
...
...
@@ -110,8 +110,8 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
{
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_
ActiveSetupEng
))
{
TRACE
(
"(CLSID_
ActiveSetupEng
%s %p)
\n
"
,
debugstr_guid
(
iid
),
ppv
);
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_
InstallEngine
))
{
TRACE
(
"(CLSID_
InstallEngine
%s %p)
\n
"
,
debugstr_guid
(
iid
),
ppv
);
return
IClassFactory_QueryInterface
(
&
ActiveSetupEngCF
,
iid
,
ppv
);
}
...
...
include/Makefile.in
View file @
4d7b7b71
...
...
@@ -59,6 +59,7 @@ PUBLIC_IDL_H_SRCS = \
imnxport.idl
\
indexsrv.idl
\
inputscope.idl
\
inseng.idl
\
mediaobj.idl
\
metahost.idl
\
mimeinfo.idl
\
...
...
dlls/inseng
/inseng.idl
→
include
/inseng.idl
View file @
4d7b7b71
/*
*
COM
Classes
for
inseng
*
*
Copyright
2010
Alexandre
Julliard
*
Copyright
2015
Jacek
Caban
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
...
...
@@ -18,18 +16,20 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
register
#
ifndef
__WIDL__
#
define
threading
(
model
)
#
endif
[
helpstring
(
"Microsoft Active Setup Engine"
),
threading
(
apartment
),
uuid
(
6
e449686
-
c509
-
11
cf
-
aafa
-
00
aa00b6015c
)
]
coclass
ActiveSetupEng
{
}
coclass
InstallEngine
{
}
[
helpstring
(
"Download Site Manager"
),
threading
(
apartment
),
uuid
(
bfc880f1
-
7484
-
11
d0
-
8309
-
00
aa00b6015c
)
]
coclass
D
LManage
r
{
}
coclass
D
ownloadSiteMg
r
{
}
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