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
624c5870
Commit
624c5870
authored
Jul 28, 2023
by
Biswapriyo Nath
Committed by
Alexandre Julliard
Aug 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add xamlom.idl file.
parent
a34267e8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
348 additions
and
0 deletions
+348
-0
Makefile.in
include/Makefile.in
+1
-0
xamlom.idl
include/xamlom.idl
+347
-0
No files found.
include/Makefile.in
View file @
624c5870
...
...
@@ -982,6 +982,7 @@ SOURCES = \
xact2wb.h
\
xact3.h
\
xact3wb.h
\
xamlom.idl
\
xapo.idl
\
xapofx.h
\
xaudio2.idl
\
...
...
include/xamlom.idl
0 → 100644
View file @
624c5870
/*
*
Copyright
(
C
)
2023
Biswapriyo
Nath
*
*
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
"oaidl.idl"
;
import
"ocidl.idl"
;
import
"inspectable.idl"
;
import
"dxgi1_2.idl"
;
cpp_quote
(
"#ifndef E_NOTFOUND"
)
cpp_quote
(
"#define E_NOTFOUND HRESULT_FROM_WIN32(ERROR_NOT_FOUND)"
)
cpp_quote
(
"#endif"
)
cpp_quote
(
"#define E_UNKNOWNTYPE _HRESULT_TYPEDEF_(0x802b0028)"
)
cpp_quote
(
"HRESULT WINAPI InitializeXamlDiagnostic(PCWSTR, DWORD, PCWSTR, PCWSTR, CLSID);"
)
cpp_quote
(
"HRESULT WINAPI InitializeXamlDiagnosticsEx(PCWSTR, DWORD, PCWSTR, PCWSTR, CLSID, PCWSTR);"
)
typedef
unsigned
hyper
InstanceHandle
;
typedef
enum
VisualMutationType
{
Add
,
Remove
}
VisualMutationType
;
typedef
enum
BaseValueSource
{
BaseValueSourceUnknown
,
BaseValueSourceDefault
,
BaseValueSourceBuiltInStyle
,
BaseValueSourceStyle
,
BaseValueSourceLocal
,
Inherited
,
DefaultStyleTrigger
,
TemplateTrigger
,
StyleTrigger
,
ImplicitStyleReference
,
ParentTemplate
,
ParentTemplateTrigger
,
Animation
,
Coercion
,
BaseValueSourceVisualState
}
BaseValueSource
;
typedef
struct
SourceInfo
{
BSTR
FileName
;
unsigned
int
LineNumber
;
unsigned
int
ColumnNumber
;
unsigned
int
CharPosition
;
BSTR
Hash
;
}
SourceInfo
;
typedef
struct
ParentChildRelation
{
InstanceHandle
Parent
;
InstanceHandle
Child
;
unsigned
int
ChildIndex
;
}
ParentChildRelation
;
typedef
struct
VisualElement
{
InstanceHandle
Handle
;
SourceInfo
SrcInfo
;
BSTR
Type
;
BSTR
Name
;
unsigned
int
NumChildren
;
}
VisualElement
;
typedef
struct
PropertyChainSource
{
InstanceHandle
Handle
;
BSTR
TargetType
;
BSTR
Name
;
BaseValueSource
Source
;
SourceInfo
SrcInfo
;
}
PropertyChainSource
;
typedef
enum
MetadataBit
{
None
=
0
x0
,
IsValueHandle
=
0
x1
,
IsPropertyReadOnly
=
0
x2
,
IsValueCollection
=
0
x4
,
IsValueCollectionReadOnly
=
0
x8
,
IsValueBindingExpression
=
0
x10
,
IsValueNull
=
0
x20
,
IsValueHandleAndEvaluatedValue
=
0
x40
,
}
MetadataBit
;
typedef
struct
PropertyChainValue
{
unsigned
int
Index
;
BSTR
Type
;
BSTR
DeclaringType
;
BSTR
ValueType
;
BSTR
ItemType
;
BSTR
Value
;
BOOL
Overridden
;
hyper
MetadataBits
;
BSTR
PropertyName
;
unsigned
int
PropertyChainIndex
;
}
PropertyChainValue
;
typedef
struct
EnumType
{
BSTR
Name
;
SAFEARRAY
(
int
)
ValueInts
;
SAFEARRAY
(
BSTR
)
ValueStrings
;
}
EnumType
;
typedef
struct
CollectionElementValue
{
unsigned
int
Index
;
BSTR
ValueType
;
BSTR
Value
;
hyper
MetadataBits
;
}
CollectionElementValue
;
typedef
enum
RenderTargetBitmapOptions
{
RenderTarget
,
RenderTargetAndChildren
}
RenderTargetBitmapOptions
;
typedef
struct
BitmapDescription
{
unsigned
int
Width
;
unsigned
int
Height
;
DXGI_FORMAT
Format
;
DXGI_ALPHA_MODE
AlphaMode
;
}
BitmapDescription
;
typedef
enum
ResourceType
{
ResourceTypeStatic
,
ResourceTypeTheme
}
ResourceType
;
typedef
enum
VisualElementState
{
ErrorResolved
,
ErrorResourceNotFound
,
ErrorInvalidResource
,
}
VisualElementState
;
[
object
,
uuid
(
aa7a8931
-
80
e4
-
4
fec
-
8
f3b
-
553
f87b4966e
)
]
interface
IVisualTreeServiceCallback
:
IUnknown
{
HRESULT
OnVisualTreeChange
(
[
in
]
ParentChildRelation
relation
,
[
in
]
VisualElement
element
,
[
in
]
VisualMutationType
mutation_type
)
;
}
[
object
,
uuid
(
bad9eb88
-
ae77
-
4397
-
b948
-
5
fa2db0a19ea
)
]
interface
IVisualTreeServiceCallback2
:
IVisualTreeServiceCallback
{
HRESULT
OnElementStateChanged
(
[
in
]
InstanceHandle
element
,
[
in
]
VisualElementState
element_state
,
[
in
]
LPCWSTR
context
)
;
}
[
object
,
uuid
(
a593b11a
-
d17f
-
48b
b
-
8
f66
-
83910731
c8a5
)
]
interface
IVisualTreeService
:
IUnknown
{
HRESULT
AdviseVisualTreeChange
(
[
in
]
IVisualTreeServiceCallback
*
callback
)
;
HRESULT
UnadviseVisualTreeChange
(
[
in
]
IVisualTreeServiceCallback
*
callback
)
;
HRESULT
GetEnums
(
[
out
]
unsigned
int
*
count
,
[
out
,
size_is
(,
*
count
)
]
EnumType
**
enums
)
;
HRESULT
CreateInstance
(
[
in
]
BSTR
type_name
,
[
in
]
BSTR
value
,
[
out
,
retval
]
InstanceHandle
*
instance_handle
)
;
HRESULT
GetPropertyValuesChain
(
[
in
]
InstanceHandle
instance_handle
,
[
out
]
unsigned
int
*
source_count
,
[
out
,
size_is
(,
*
source_count
)
]
PropertyChainSource
**
property_sources
,
[
out
]
unsigned
int
*
property_count
,
[
out
,
size_is
(,
*
property_count
)
]
PropertyChainValue
**
property_values
)
;
HRESULT
SetProperty
(
[
in
]
InstanceHandle
instance_handle
,
[
in
]
InstanceHandle
value
,
[
in
]
unsigned
int
property_index
)
;
HRESULT
ClearProperty
(
[
in
]
InstanceHandle
instance_handle
,
[
in
]
unsigned
int
property_index
)
;
HRESULT
GetCollectionCount
(
[
in
]
InstanceHandle
instance_handle
,
[
out
]
unsigned
int
*
collection_size
)
;
HRESULT
GetCollectionElements
(
[
in
]
InstanceHandle
instance_handle
,
[
in
]
unsigned
int
start_index
,
[
in
,
out
]
unsigned
int
*
element_count
,
[
out
,
size_is
(,
*
element_count
)
]
CollectionElementValue
**
element_values
)
;
HRESULT
AddChild
(
[
in
]
InstanceHandle
parent
,
[
in
]
InstanceHandle
child
,
[
in
]
unsigned
int
index
)
;
HRESULT
RemoveChild
(
[
in
]
InstanceHandle
parent
,
[
in
]
unsigned
int
index
)
;
HRESULT
ClearChildren
(
[
in
]
InstanceHandle
parent
)
;
}
[
object
,
uuid
(
18
c9e2b6
-
3
f43
-
4116
-
9
f2b
-
ff935d7770d2
)
]
interface
IXamlDiagnostics
:
IUnknown
{
HRESULT
GetDispatcher
(
[
out
,
retval
]
IInspectable
**
dispatcher
)
;
HRESULT
GetUiLayer
(
[
out
,
retval
]
IInspectable
**
layer
)
;
HRESULT
GetApplication
(
[
out
,
retval
]
IInspectable
**
application
)
;
HRESULT
GetIInspectableFromHandle
(
[
in
]
InstanceHandle
instance_handle
,
[
out
,
retval
]
IInspectable
**
instance
)
;
HRESULT
GetHandleFromIInspectable
(
[
in
]
IInspectable
*
instance
,
[
out
,
retval
]
InstanceHandle
*
handle
)
;
HRESULT
HitTest
(
[
in
]
RECT
rect
,
[
out
]
unsigned
int
*
count
,
[
out
,
size_is
(,
*
count
)
]
InstanceHandle
**
instance_handles
)
;
HRESULT
RegisterInstance
(
[
in
]
IInspectable
*
instance
,
[
out
,
retval
]
InstanceHandle
*
instance_handle
)
;
HRESULT
GetInitializationData
(
[
out
,
retval
]
BSTR
*
initialization_data
)
;
}
[
object
,
uuid
(
d1a34ef2
-
cad8
-
4635
-
a3d2
-
fcda8d3f3caf
)
]
interface
IBitmapData
:
IUnknown
{
HRESULT
CopyBytesTo
(
[
in
]
unsigned
int
source_offset_in_bytes
,
[
in
]
unsigned
int
max_bytes_to_copy
,
[
out
,
size_is
(
max_bytes_to_copy
)
]
byte
*
bytes
,
[
out
]
unsigned
int
*
number_of_bytes_copied
)
;
HRESULT
GetStride
(
[
out
]
unsigned
int
*
stride
)
;
HRESULT
GetBitmapDescription
(
[
out
]
BitmapDescription
*
bitmap_description
)
;
HRESULT
GetSourceBitmapDescription
(
[
out
]
BitmapDescription
*
bitmap_description
)
;
}
[
object
,
uuid
(
130
f5136
-
ec43
-
4
f61
-
89
c7
-
9801
a36d2e95
)
]
interface
IVisualTreeService2
:
IVisualTreeService
{
HRESULT
GetPropertyIndex
(
[
in
]
InstanceHandle
object
,
[
in
]
LPCWSTR
property_name
,
[
out
]
unsigned
int
*
property_index
)
;
HRESULT
GetProperty
(
[
in
]
InstanceHandle
object
,
[
in
]
unsigned
int
property_index
,
[
out
]
InstanceHandle
*
value
)
;
HRESULT
ReplaceResource
(
[
in
]
InstanceHandle
resource_dictionary
,
[
in
]
InstanceHandle
key
,
[
in
]
InstanceHandle
new_value
)
;
HRESULT
RenderTargetBitmap
(
[
in
]
InstanceHandle
handle
,
[
in
]
RenderTargetBitmapOptions
options
,
[
in
]
unsigned
int
max_pixel_width
,
[
in
]
unsigned
int
max_pixel_height
,
[
out
]
IBitmapData
**
bitmap_data
)
;
}
[
object
,
uuid
(
0
e79c6e0
-
85
a0
-
4b
e8
-
b41a
-
655
cf1fd19bd
)
]
interface
IVisualTreeService3
:
IVisualTreeService2
{
HRESULT
ResolveResource
(
[
in
]
InstanceHandle
resource_context
,
[
in
]
LPCWSTR
resource_name
,
[
in
]
ResourceType
resource_type
,
[
in
]
unsigned
int
property_index
)
;
HRESULT
GetDictionaryItem
(
[
in
]
InstanceHandle
dictionary_handle
,
[
in
]
LPCWSTR
resource_name
,
[
in
]
BOOL
resource_is_implicit_style
,
[
out
]
InstanceHandle
*
resource_handle
)
;
HRESULT
AddDictionaryItem
(
[
in
]
InstanceHandle
dictionary_handle
,
[
in
]
InstanceHandle
resource_key
,
[
in
]
InstanceHandle
resource_handle
)
;
HRESULT
RemoveDictionaryItem
(
[
in
]
InstanceHandle
dictionary_handle
,
[
in
]
InstanceHandle
resource_key
)
;
}
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