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
e6fd4d42
Commit
e6fd4d42
authored
Dec 23, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss: Rename CLSID_ITSProtocol to CLSID_MSITStore.
ITSProtocol is a different object.
parent
ab4822ec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
itss.c
dlls/itss/itss.c
+3
-3
regsvr.c
dlls/itss/regsvr.c
+1
-1
itss.idl
include/wine/itss.idl
+2
-2
No files found.
dlls/itss/itss.c
View file @
e6fd4d42
...
@@ -141,7 +141,7 @@ static const IClassFactoryVtbl ITSSCF_Vtbl =
...
@@ -141,7 +141,7 @@ static const IClassFactoryVtbl ITSSCF_Vtbl =
};
};
static
const
IClassFactoryImpl
ITStorage_factory
=
{
&
ITSSCF_Vtbl
,
ITSS_create
};
static
const
IClassFactoryImpl
ITStorage_factory
=
{
&
ITSSCF_Vtbl
,
ITSS_create
};
static
const
IClassFactoryImpl
ITSProtocol
_factory
=
{
&
ITSSCF_Vtbl
,
ITS_IParseDisplayName_create
};
static
const
IClassFactoryImpl
MSITStore
_factory
=
{
&
ITSSCF_Vtbl
,
ITS_IParseDisplayName_create
};
/***********************************************************************
/***********************************************************************
* DllGetClassObject (ITSS.@)
* DllGetClassObject (ITSS.@)
...
@@ -154,8 +154,8 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
...
@@ -154,8 +154,8 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
if
(
IsEqualGUID
(
&
CLSID_ITStorage
,
rclsid
))
if
(
IsEqualGUID
(
&
CLSID_ITStorage
,
rclsid
))
factory
=
&
ITStorage_factory
;
factory
=
&
ITStorage_factory
;
else
if
(
IsEqualGUID
(
&
CLSID_
ITSProtocol
,
rclsid
))
else
if
(
IsEqualGUID
(
&
CLSID_
MSITStore
,
rclsid
))
factory
=
&
ITSProtocol
_factory
;
factory
=
&
MSITStore
_factory
;
else
else
{
{
FIXME
(
"%s: no class found.
\n
"
,
debugstr_guid
(
rclsid
));
FIXME
(
"%s: no class found.
\n
"
,
debugstr_guid
(
rclsid
));
...
...
dlls/itss/regsvr.c
View file @
e6fd4d42
...
@@ -513,7 +513,7 @@ static struct regsvr_coclass const coclass_list[] = {
...
@@ -513,7 +513,7 @@ static struct regsvr_coclass const coclass_list[] = {
"itss.dll"
,
"itss.dll"
,
"Both"
"Both"
},
},
{
&
CLSID_
ITSProtocol
,
{
&
CLSID_
MSITStore
,
"Microsoft InforTech Protocol for IE 3.0"
,
"Microsoft InforTech Protocol for IE 3.0"
,
NULL
,
NULL
,
"itss.dll"
,
"itss.dll"
,
...
...
include/wine/itss.idl
View file @
e6fd4d42
...
@@ -89,5 +89,5 @@ interface IITStorage : IUnknown
...
@@ -89,5 +89,5 @@ interface IITStorage : IUnknown
[
in
]
ECompactionLev
iLev
)
;
[
in
]
ECompactionLev
iLev
)
;
}
}
cpp_quote
(
"DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec
);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_
ITSProtocol
,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_
MSITStore
,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);"
)
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