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
2d58bca0
Commit
2d58bca0
authored
Aug 04, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wshom.ocx: Added typelib.
parent
0a7a3be0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
149 additions
and
0 deletions
+149
-0
Makefile.in
dlls/wshom.ocx/Makefile.in
+2
-0
wshom.idl
dlls/wshom.ocx/wshom.idl
+147
-0
No files found.
dlls/wshom.ocx/Makefile.in
View file @
2d58bca0
...
...
@@ -3,4 +3,6 @@ MODULE = wshom.ocx
C_SRCS
=
\
wshom_main.c
IDL_TLB_SRCS
=
wshom.idl
@MAKE_DLL_RULES@
dlls/wshom.ocx/wshom.idl
0 → 100644
View file @
2d58bca0
/*
*
Copyright
2011
Jacek
Caban
for
CodeWeavers
*
*
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"
;
[
helpstring
(
"Windows Script Host Object Model"
),
uuid
(
f935dc20
-
1
cf0
-
11
d0
-
adb9
-
00
c04fd58a0b
),
version
(
1.0
)
]
library
IWshRuntimeLibrary
{
importlib
(
"stdole2.tlb"
)
;
[
uuid
(
f935dc27
-
1
cf0
-
11
d0
-
adb9
-
00
c04fd58a0b
),
odl
,
dual
,
oleautomation
]
interface
IWshCollection
:
IDispatch
{
[
id
(
DISPID_VALUE
)
]
HRESULT
Item
(
[
in
]
VARIANT
*
Index
,
[
out
,
retval
]
VARIANT
*
out_Value
)
;
[
id
(
1
)
]
HRESULT
Count
(
[
out
,
retval
]
long
*
out_Count
)
;
[
id
(
2
),
propget
]
HRESULT
length
(
[
out
,
retval
]
long
*
out_Count
)
;
[
id
(
DISPID_NEWENUM
)
]
HRESULT
_NewEnum
(
[
out
,
retval
]
IUnknown
*
out_Enum
)
;
}
[
uuid
(
f935dc29
-
1
cf0
-
11
d0
-
adb9
-
00
c04fd58a0b
),
odl
,
dual
,
oleautomation
]
interface
IWshEnvironment
:
IDispatch
{
[
id
(
DISPID_VALUE
),
propget
]
HRESULT
Item
(
[
in
]
BSTR
Name
,
[
out
,
retval
]
BSTR
*
out_Value
)
;
[
id
(
DISPID_VALUE
),
propput
]
HRESULT
Item
(
[
in
]
BSTR
Name
,
[
in
]
BSTR
out_Value
)
;
[
id
(
1
)
]
HRESULT
Count
(
[
out
,
retval
]
long
*
out_Count
)
;
[
id
(
2
),
propget
]
HRESULT
length
(
[
out
,
retval
]
long
*
out_Count
)
;
[
id
(
DISPID_NEWENUM
)
]
HRESULT
_NewEnum
(
[
out
,
retval
]
IUnknown
*
out_Enum
)
;
[
id
(
0
x03e9
)
]
HRESULT
Remove
(
[
in
]
BSTR
Name
)
;
}
[
uuid
(
41904400
-
be18
-
11
d3
-
a28b
-
00104b
d35090
),
odl
,
dual
,
oleautomation
]
interface
IWshShell3
:
IDispatch
{
[
id
(
0
x0064
),
propget
]
HRESULT
SpecialFolders
(
[
out
,
retval
]
IWshCollection
**
out_Folders
)
;
[
id
(
0
x00c8
),
propget
]
HRESULT
Environment
(
[
in
,
optional
]
VARIANT
*
Type
,
[
out
,
retval
]
IWshEnvironment
**
out_Env
)
;
[
id
(
0
x03e8
)
]
HRESULT
Run
(
[
in
]
BSTR
Command
,
[
in
,
optional
]
VARIANT
*
WindowStyle
,
[
in
,
optional
]
VARIANT
*
WaitOnReturn
,
[
out
,
retval
]
int
*
out_ExitCode
)
;
}
[
uuid
(
24b
e5a31
-
edfe
-
11
d2
-
b933
-
00104b365
c9f
),
odl
,
dual
,
oleautomation
]
interface
IWshNetwork2
:
IDispatch
{
[
id
(
0
x60020000
),
propget
]
HRESULT
UserDomain
(
[
out
,
retval
]
BSTR
*
out_UserDomain
)
;
}
[
helpstring
(
"Windows Script Host Shell Object"
),
uuid
(
f935dc22
-
1
cf0
-
11
d0
-
adb9
-
00
c04fd58a0b
)
]
coclass
IWshShell_Class
{
[
default
]
interface
IWshShell3
;
}
[
helpstring
(
"Windows Script Host Shell Object"
),
uuid
(
72
c24dd5
-
d70a
-
438b
-
8
a42
-
98424b88
afb8
)
]
coclass
WshShell
{
[
default
]
interface
IWshShell3
;
}
[
helpstring
(
"Windows Script Host Network Object"
),
uuid
(
f935dc26
-
1
cf0
-
11
d0
-
adb9
-
00
c04fd58a0b
)
]
coclass
IWshNetwork_Class
{
[
default
]
interface
IWshNetwork2
;
}
[
helpstring
(
"Windows Script Host Network Object"
),
uuid
(
093
ff999
-
1
ea0
-
4079
-
9525
-
9614
c3504b74
)
]
coclass
WshNetwork
{
[
default
]
interface
IWshNetwork2
;
}
}
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