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
ea3be467
Commit
ea3be467
authored
Mar 23, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Mar 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Add initial fusion.idl.
parent
f34efcb8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
135 additions
and
0 deletions
+135
-0
.gitignore
.gitignore
+1
-0
Makefile.in
include/Makefile.in
+1
-0
fusion.idl
include/fusion.idl
+133
-0
No files found.
.gitignore
View file @
ea3be467
...
...
@@ -489,6 +489,7 @@ include/downloadmgr.h
include/dxgi.h
include/dxgitype.h
include/exdisp.h
include/fusion.h
include/hlink.h
include/htiframe.h
include/iads.h
...
...
include/Makefile.in
View file @
ea3be467
...
...
@@ -23,6 +23,7 @@ IDL_H_SRCS = \
dxgi.idl
\
dxgitype.idl
\
exdisp.idl
\
fusion.idl
\
hlink.idl
\
htiframe.idl
\
iads.idl
\
...
...
include/fusion.idl
0 → 100644
View file @
ea3be467
/*
*
Copyright
2008
James
Hawkins
*
*
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
"objidl.idl"
;
interface
IAssemblyCache
;
interface
IAssemblyCacheItem
;
interface
IAssemblyEnum
;
interface
IAssemblyName
;
typedef
enum
{
ASM_CACHE_ZAP
=
0
x1
,
ASM_CACHE_GAC
=
0
x2
,
ASM_CACHE_DOWNLOAD
=
0
x4
,
ASM_CACHE_ROOT
=
0
x8
}
ASM_CACHE_FLAGS
;
typedef
enum
{
peNone
=
0
x00000000
,
peMSIL
=
0
x00000001
,
peI386
=
0
x00000002
,
peIA64
=
0
x00000003
,
peAMD64
=
0
x00000004
,
peInvalid
=
0
xffffffff
}
PEKIND
;
typedef
enum
_tagAssemblyComparisonResult
{
ACR_Unknown
,
ACR_EquivalentFullMatch
,
ACR_EquivalentWeakNamed
,
ACR_EquivalentFXUnified
,
ACR_EquivalentUnified
,
ACR_NonEquivalentVersion
,
ACR_NonEquivalent
,
ACR_EquivalentPartialMatch
,
ACR_EquivalentPartialWeakNamed
,
ACR_EquivalentPartialUnified
,
ACR_EquivalentPartialFXUnified
,
ACR_NonEquivalentPartialVersion
}
AssemblyComparisonResult
;
[
local
,
object
,
uuid
(
e707dcde
-
d1cd
-
11
d2
-
bab9
-
00
c04f8eceae
),
pointer_default
(
unique
)
]
interface
IAssemblyCache
:
IUnknown
{
}
[
local
,
object
,
uuid
(
9
e3aaeb4
-
d1cd
-
11
d2
-
bab9
-
00
c04f8eceae
),
pointer_default
(
unique
)
]
interface
IAssemblyCacheItem
:
IUnknown
{
}
[
local
,
object
,
uuid
(
CD193BC0
-
B4BC
-
11
d2
-
9833
-
00
C04FC31D2E
),
pointer_default
(
unique
)
]
interface
IAssemblyName
:
IUnknown
{
typedef
[
unique
]
IAssemblyName
*
LPASSEMBLYNAME
;
}
[
local
,
object
,
uuid
(
21b8916
c
-
f28e
-
11
d2
-
a473
-
00
c04f8ef448
),
pointer_default
(
unique
)
]
interface
IAssemblyEnum
:
IUnknown
{
}
[
local
,
object
,
uuid
(
582
dac66
-
e678
-
449
f
-
aba6
-
6
faaec8a9394
),
pointer_default
(
unique
)
]
interface
IInstallReferenceItem
:
IUnknown
{
}
[
local
,
object
,
uuid
(
56b1
a988
-
7
c0c
-
4
aa2
-
8639
-
c3eb5a90226f
),
pointer_default
(
unique
)
]
interface
IInstallReferenceEnum
:
IUnknown
{
}
cpp_quote
(
"HRESULT WINAPI ClearDownloadCache(void);"
)
cpp_quote
(
"HRESULT WINAPI CompareAssemblyIdentity(LPCWSTR,BOOL,LPCWSTR,BOOL,BOOL*,AssemblyComparisonResult*);"
)
cpp_quote
(
"HRESULT WINAPI CreateAssemblyCache(IAssemblyCache**,DWORD);"
)
cpp_quote
(
"HRESULT WINAPI CreateAssemblyEnum(IAssemblyEnum**,IUnknown*,IAssemblyName*,DWORD,LPVOID);"
)
cpp_quote
(
"HRESULT WINAPI CreateAssemblyNameObject(LPASSEMBLYNAME*,LPCWSTR,DWORD,LPVOID);"
)
cpp_quote
(
"HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum**,IAssemblyName*,DWORD,LPVOID);"
)
cpp_quote
(
"HRESULT WINAPI GetAssemblyIdentityFromFile(LPCWSTR,REFIID,IUnknown**);"
)
cpp_quote
(
"HRESULT WINAPI GetCachePath(ASM_CACHE_FLAGS,LPWSTR,PDWORD);"
)
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