Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
b8a2a4e4
Commit
b8a2a4e4
authored
Jan 22, 2016
by
Dmitry Timoshkov
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Make stdole32.idl a public component.
This makes it possible to import stdole32.tlb from other .idl files.
parent
8dfbcd49
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
145 additions
and
118 deletions
+145
-118
std_ole_v1.idl
dlls/stdole32.tlb/std_ole_v1.idl
+1
-118
Makefile.in
include/Makefile.in
+1
-0
stdole32.idl
include/stdole32.idl
+143
-0
No files found.
dlls/stdole32.tlb/std_ole_v1.idl
View file @
b8a2a4e4
...
@@ -20,121 +20,4 @@
...
@@ -20,121 +20,4 @@
#
pragma
makedep
regtypelib
#
pragma
makedep
regtypelib
[
#
include
"stdole32.idl"
uuid
(
00020430
-
0000
-
0000
-
C000
-
000000000046
),
restricted
,
version
(
1.0
),
helpstring
(
"OLE Automation"
)
]
library
stdole
{
/*
typedefs
aren
't stored in the type library.
These type names are known by the type compiler so it
doesn'
t
really
matter
what
we
define
them
as
.
*/
typedef
void
*
VARIANT
;
typedef
wchar_t
*
BSTR
;
typedef
unsigned
long
SCODE
;
typedef
unsigned
long
HRESULT
;
typedef
struct
GUID
{
unsigned
long
Data1
;
unsigned
short
Data2
;
unsigned
short
Data3
;
unsigned
char
Data4
[
8
]
;
}
GUID
;
typedef
struct
DISPPARAMS
{
VARIANT
*
rgvarg
;
long
*
rgdispidNamedArgs
;
unsigned
int
cArgs
;
unsigned
int
cNamedArgs
;
}
DISPPARAMS
;
typedef
struct
EXCEPINFO
{
unsigned
short
wCode
;
unsigned
short
wReserved
;
BSTR
bstrSource
;
BSTR
bstrDescription
;
BSTR
bstrHelpFile
;
unsigned
long
dwHelpContext
;
void
*
pvReserved
;
void
*
pfnDeferredFillIn
;
SCODE
scode
;
}
EXCEPINFO
;
[
odl
,
uuid
(
00000000
-
0000
-
0000
-
C000
-
000000000046
)
]
interface
IUnknown
{
[
restricted
]
HRESULT
QueryInterface
(
[
in
]
GUID
*
riid
,
[
out
]
void
**
ppvObj
)
;
[
restricted
]
unsigned
long
AddRef
()
;
[
restricted
]
unsigned
long
Release
()
;
}
[
odl
,
uuid
(
00020400
-
0000
-
0000
-
C000
-
000000000046
)
]
interface
IDispatch
:
IUnknown
{
[
restricted
]
HRESULT
GetTypeInfoCount
(
[
out
]
unsigned
int
*
pctinfo
)
;
[
restricted
]
HRESULT
GetTypeInfo
(
[
in
]
unsigned
int
itinfo
,
[
in
]
unsigned
long
lcid
,
[
out
]
void
**
pptinfo
)
;
[
restricted
]
HRESULT
GetIDsOfNames
(
[
in
]
GUID
*
riid
,
[
in
]
char
**
rgszNames
,
[
in
]
unsigned
int
cNames
,
[
in
]
unsigned
long
lcid
,
[
out
]
long
*
rgdispid
)
;
[
restricted
]
HRESULT
Invoke
(
[
in
]
long
dispidMember
,
[
in
]
GUID
*
riid
,
[
in
]
unsigned
long
lcid
,
[
in
]
unsigned
short
wFlags
,
[
in
]
DISPPARAMS
*
pdispparams
,
[
out
]
VARIANT
*
pvarResult
,
[
out
]
EXCEPINFO
*
pexcepinfo
,
[
out
]
unsigned
int
*
puArgErr
)
;
}
[
odl
,
uuid
(
00020404
-
0000
-
0000
-
C000
-
000000000046
)
]
interface
IEnumVARIANT
:
IUnknown
{
HRESULT
Next
(
[
in
]
unsigned
long
celt
,
[
in
]
VARIANT
*
rgvar
,
[
out
]
unsigned
long
*
pceltFetched
)
;
HRESULT
Skip
(
[
in
]
unsigned
long
celt
)
;
HRESULT
Reset
()
;
HRESULT
Clone
(
[
out
]
IEnumVARIANT
**
ppenum
)
;
}
}
;
include/Makefile.in
View file @
b8a2a4e4
...
@@ -707,6 +707,7 @@ SOURCES = \
...
@@ -707,6 +707,7 @@ SOURCES = \
srrestoreptapi.h
\
srrestoreptapi.h
\
sspi.h
\
sspi.h
\
stamp-h.in
\
stamp-h.in
\
stdole32.idl
\
stgprop.h
\
stgprop.h
\
sti.h
\
sti.h
\
storage.h
\
storage.h
\
...
...
include/stdole32.idl
0 → 100644
View file @
b8a2a4e4
/*
*
Copyright
(
C
)
2003
Robert
Shearman
*
2005
Huw
Davies
*
*
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
*
*/
#
if
0
#
pragma
makedep
install
#
pragma
makedep
typelib
#
endif
[
uuid
(
00020430
-
0000
-
0000
-
C000
-
000000000046
),
restricted
,
version
(
1.0
),
helpstring
(
"OLE Automation"
)
]
library
stdole
{
/*
typedefs
aren
't stored in the type library.
These type names are known by the type compiler so it
doesn'
t
really
matter
what
we
define
them
as
.
*/
typedef
void
*
VARIANT
;
typedef
wchar_t
*
BSTR
;
typedef
unsigned
long
SCODE
;
typedef
unsigned
long
HRESULT
;
typedef
struct
GUID
{
unsigned
long
Data1
;
unsigned
short
Data2
;
unsigned
short
Data3
;
unsigned
char
Data4
[
8
]
;
}
GUID
;
typedef
struct
DISPPARAMS
{
VARIANT
*
rgvarg
;
long
*
rgdispidNamedArgs
;
unsigned
int
cArgs
;
unsigned
int
cNamedArgs
;
}
DISPPARAMS
;
typedef
struct
EXCEPINFO
{
unsigned
short
wCode
;
unsigned
short
wReserved
;
BSTR
bstrSource
;
BSTR
bstrDescription
;
BSTR
bstrHelpFile
;
unsigned
long
dwHelpContext
;
void
*
pvReserved
;
void
*
pfnDeferredFillIn
;
SCODE
scode
;
}
EXCEPINFO
;
[
odl
,
uuid
(
00000000
-
0000
-
0000
-
C000
-
000000000046
)
]
interface
IUnknown
{
[
restricted
]
HRESULT
QueryInterface
(
[
in
]
GUID
*
riid
,
[
out
]
void
**
ppvObj
)
;
[
restricted
]
unsigned
long
AddRef
()
;
[
restricted
]
unsigned
long
Release
()
;
}
[
odl
,
uuid
(
00020400
-
0000
-
0000
-
C000
-
000000000046
)
]
interface
IDispatch
:
IUnknown
{
[
restricted
]
HRESULT
GetTypeInfoCount
(
[
out
]
unsigned
int
*
pctinfo
)
;
[
restricted
]
HRESULT
GetTypeInfo
(
[
in
]
unsigned
int
itinfo
,
[
in
]
unsigned
long
lcid
,
[
out
]
void
**
pptinfo
)
;
[
restricted
]
HRESULT
GetIDsOfNames
(
[
in
]
GUID
*
riid
,
[
in
]
char
**
rgszNames
,
[
in
]
unsigned
int
cNames
,
[
in
]
unsigned
long
lcid
,
[
out
]
long
*
rgdispid
)
;
[
restricted
]
HRESULT
Invoke
(
[
in
]
long
dispidMember
,
[
in
]
GUID
*
riid
,
[
in
]
unsigned
long
lcid
,
[
in
]
unsigned
short
wFlags
,
[
in
]
DISPPARAMS
*
pdispparams
,
[
out
]
VARIANT
*
pvarResult
,
[
out
]
EXCEPINFO
*
pexcepinfo
,
[
out
]
unsigned
int
*
puArgErr
)
;
}
[
odl
,
uuid
(
00020404
-
0000
-
0000
-
C000
-
000000000046
)
]
interface
IEnumVARIANT
:
IUnknown
{
HRESULT
Next
(
[
in
]
unsigned
long
celt
,
[
in
]
VARIANT
*
rgvar
,
[
out
]
unsigned
long
*
pceltFetched
)
;
HRESULT
Skip
(
[
in
]
unsigned
long
celt
)
;
HRESULT
Reset
()
;
HRESULT
Clone
(
[
out
]
IEnumVARIANT
**
ppenum
)
;
}
}
;
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