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
d8f4070b
Commit
d8f4070b
authored
Jan 18, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added VBScript.RegExp version 1.0 typelib.
parent
8de70b31
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
146 additions
and
0 deletions
+146
-0
Makefile.in
dlls/vbscript/Makefile.in
+1
-0
vbsregexp10.idl
dlls/vbscript/vbsregexp10.idl
+145
-0
No files found.
dlls/vbscript/Makefile.in
View file @
d8f4070b
...
...
@@ -22,6 +22,7 @@ IDL_H_SRCS = \
IDL_TLB_SRCS
=
\
vbsglobal.idl
\
vbsregexp10.idl
\
vbsregexp55.idl
IDL_R_SRCS
=
vbscript_classes.idl
...
...
dlls/vbscript/vbsregexp10.idl
0 → 100644
View file @
d8f4070b
/*
*
Copyright
2013
Piotr
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"
;
#
include
"vbscript_defs.h"
[
helpstring
(
"Microsoft VBScript Regular Expressions 1.0"
),
id
(
2
),
uuid
(
3
f4daca7
-160d-11
d2
-
a8e9
-
00104b365
c9f
),
version
(
1.0
)
]
library
VBScript_RegExp_10
{
importlib
(
"stdole2.tlb"
)
;
[
dual
,
hidden
,
nonextensible
,
odl
,
oleautomation
,
uuid
(
3
f4daca0
-160d-11
d2
-
a8e9
-
00104b365
c9f
),
]
interface
IRegExp
:
IDispatch
{
[
id
(
DISPID_REGEXP_PATTERN
),
propget
]
HRESULT
Pattern
(
[
out
,
retval
]
BSTR
*
pPattern
)
;
[
id
(
DISPID_REGEXP_PATTERN
),
propput
]
HRESULT
Pattern
(
[
in
]
BSTR
pPattern
)
;
[
id
(
DISPID_REGEXP_IGNORECASE
),
propget
]
HRESULT
IgnoreCase
(
[
out
,
retval
]
VARIANT_BOOL
*
pIgnoreCase
)
;
[
id
(
DISPID_REGEXP_IGNORECASE
),
propput
]
HRESULT
IgnoreCase
(
[
in
]
VARIANT_BOOL
pIgnoreCase
)
;
[
id
(
DISPID_REGEXP_GLOBAL
),
propget
]
HRESULT
Global
(
[
out
,
retval
]
VARIANT_BOOL
*
pGlobal
)
;
[
id
(
DISPID_REGEXP_GLOBAL
),
propput
]
HRESULT
Global
(
[
in
]
VARIANT_BOOL
pGlobal
)
;
[
id
(
DISPID_REGEXP_EXECUTE
)
]
HRESULT
Execute
(
[
in
]
BSTR
sourceString
,
[
out
,
retval
]
IDispatch
**
ppMatches
)
;
[
id
(
DISPID_REGEXP_TEST
)
]
HRESULT
Test
(
[
in
]
BSTR
sourceString
,
[
out
,
retval
]
VARIANT_BOOL
*
pMatch
)
;
[
id
(
DISPID_REGEXP_REPLACE
)
]
HRESULT
Replace
(
[
in
]
BSTR
sourceString
,
[
in
]
BSTR
replaceString
,
[
out
,
retval
]
BSTR
*
pDestString
)
;
}
[
dual
,
hidden
,
nonextensible
,
odl
,
oleautomation
,
uuid
(
3
f4daca1
-160d-11
d2
-
a8e9
-
00104b365
c9f
)
]
interface
IMatch
:
IDispatch
{
[
id
(
DISPID_VALUE
),
propget
]
HRESULT
Value
(
[
out
,
retval
]
BSTR
*
pValue
)
;
[
id
(
DISPID_MATCH_FIRSTINDEX
),
propget
]
HRESULT
FirstIndex
(
[
out
,
retval
]
LONG
*
pFirstIndex
)
;
[
id
(
DISPID_MATCH_LENGTH
),
propget
]
HRESULT
Length
(
[
out
,
retval
]
LONG
*
pLength
)
;
}
[
dual
,
hidden
,
nonextensible
,
odl
,
oleautomation
,
uuid
(
3
f4daca2
-160d-11
d2
-
a8e9
-
00104b365
c9f
)
]
interface
IMatchCollection
:
IDispatch
{
[
id
(
DISPID_VALUE
),
propget
]
HRESULT
Item
(
[
in
]
LONG
index
,
[
out
,
retval
]
IDispatch
**
ppMatch
)
;
[
id
(
DISPID_MATCHCOLLECTION_COUNT
),
propget
]
HRESULT
Count
(
[
out
,
retval
]
LONG
*
pCount
)
;
[
id
(
DISPID_NEWENUM
),
propget
]
HRESULT
_NewEnum
(
[
out
,
retval
]
IUnknown
**
ppEnum
)
;
}
[
uuid
(
3
f4daca4
-160d-11
d2
-
a8e9
-
00104b365
c9f
)
]
coclass
RegExp
{
[
default
]
interface
IRegExp
;
}
[
noncreatable
,
uuid
(
3
f4daca5
-160d-11
d2
-
a8e9
-
00104b365
c9f
)
]
coclass
Match
{
[
default
]
interface
IMatch
;
}
[
noncreatable
,
uuid
(
3
f4daca6
-160d-11
d2
-
a8e9
-
00104b365
c9f
)
]
coclass
MatchCollection
{
[
default
]
interface
IMatchCollection
;
}
}
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