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
85aefa35
Commit
85aefa35
authored
Feb 25, 2007
by
Misha Koshelev
Committed by
Alexandre Julliard
Feb 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleview: Add safearray type.
parent
15d10978
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
typelib.c
programs/oleview/typelib.c
+7
-0
No files found.
programs/oleview/typelib.c
View file @
85aefa35
...
...
@@ -76,6 +76,7 @@ static const WCHAR wszVT_UNKNOWN[] = { 'I','U','n','k','n','o','w','n','\0' };
static
const
WCHAR
wszVT_DISPATCH
[]
=
{
'I'
,
'D'
,
'i'
,
's'
,
'p'
,
'a'
,
't'
,
'c'
,
'h'
,
'\0'
};
static
const
WCHAR
wszVT_DATE
[]
=
{
'D'
,
'A'
,
'T'
,
'E'
,
'\0'
};
static
const
WCHAR
wszVT_R8
[]
=
{
'd'
,
'o'
,
'u'
,
'b'
,
'l'
,
'e'
,
'\0'
};
static
const
WCHAR
wszVT_SAFEARRAY
[]
=
{
'S'
,
'A'
,
'F'
,
'E'
,
'A'
,
'R'
,
'R'
,
'A'
,
'Y'
,
'\0'
};
const
WCHAR
wszFormat
[]
=
{
'0'
,
'x'
,
'%'
,
'.'
,
'8'
,
'l'
,
'x'
,
'\0'
};
static
const
WCHAR
wszStdCall
[]
=
{
'_'
,
's'
,
't'
,
'd'
,
'c'
,
'a'
,
'l'
,
'l'
,
'\0'
};
...
...
@@ -342,6 +343,12 @@ void CreateTypeInfo(WCHAR *wszAddTo, WCHAR *wszAddAfter, TYPEDESC tdesc, ITypeIn
}
CreateTypeInfo
(
wszAddTo
,
wszAddAfter
,
U
(
tdesc
).
lpadesc
->
tdescElem
,
pTypeInfo
);
break
;
case
VT_SAFEARRAY
:
AddToStrW
(
wszAddTo
,
wszVT_SAFEARRAY
);
AddToStrW
(
wszAddTo
,
wszOpenBrackets2
);
CreateTypeInfo
(
wszAddTo
,
wszAddAfter
,
*
U
(
tdesc
).
lptdesc
,
pTypeInfo
);
AddToStrW
(
wszAddTo
,
wszCloseBrackets2
);
break
;
case
VT_PTR
:
CreateTypeInfo
(
wszAddTo
,
wszAddAfter
,
*
U
(
tdesc
).
lptdesc
,
pTypeInfo
);
AddToStrW
(
wszAddTo
,
wszAsterix
);
...
...
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