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
63d27b54
Commit
63d27b54
authored
Feb 15, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 15, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added IRegExp2 stub.
parent
06e8d830
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
1 deletion
+19
-1
.gitignore
.gitignore
+1
-0
Makefile.in
dlls/vbscript/Makefile.in
+3
-1
vbregexp.c
dlls/vbscript/vbregexp.c
+0
-0
vbscript.h
dlls/vbscript/vbscript.h
+1
-0
vbscript_main.c
dlls/vbscript/vbscript_main.c
+14
-0
No files found.
.gitignore
View file @
63d27b54
...
...
@@ -138,6 +138,7 @@ dlls/vbscript/parser.tab.c
dlls/vbscript/parser.tab.h
dlls/vbscript/vbscript_classes.h
dlls/vbscript/vbsglobal.h
dlls/vbscript/vbsregexp55.h
dlls/wbemprox/wql.tab.c
dlls/wbemprox/wql.tab.h
dlls/windowscodecs/windowscodecs_wincodec.h
...
...
dlls/vbscript/Makefile.in
View file @
63d27b54
...
...
@@ -8,6 +8,7 @@ C_SRCS = \
interp.c
\
lex.c
\
vbdisp.c
\
vbregexp.c
\
vbscript.c
\
vbscript_main.c
...
...
@@ -18,7 +19,8 @@ RC_SRCS = vbscript.rc
IDL_H_SRCS
=
\
vbscript_classes.idl
\
vbsglobal.idl
vbsglobal.idl
\
vbsregexp55.idl
IDL_TLB_SRCS
=
\
vbsglobal.idl
\
...
...
dlls/vbscript/vbregexp.c
0 → 100644
View file @
63d27b54
This diff is collapsed.
Click to expand it.
dlls/vbscript/vbscript.h
View file @
63d27b54
...
...
@@ -357,6 +357,7 @@ static inline BOOL is_int32(double d)
}
HRESULT
WINAPI
VBScriptFactory_CreateInstance
(
IClassFactory
*
,
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
VBScriptRegExpFactory_CreateInstance
(
IClassFactory
*
,
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
const
char
*
debugstr_variant
(
const
VARIANT
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/vbscript/vbscript_main.c
View file @
63d27b54
...
...
@@ -24,6 +24,7 @@
#include "rpcproxy.h"
#include "vbscript_classes.h"
#include "vbsglobal.h"
#include "vbsregexp55.h"
#include "wine/debug.h"
...
...
@@ -257,6 +258,16 @@ static const IClassFactoryVtbl VBScriptFactoryVtbl = {
static
IClassFactory
VBScriptFactory
=
{
&
VBScriptFactoryVtbl
};
static
const
IClassFactoryVtbl
VBScriptRegExpFactoryVtbl
=
{
ClassFactory_QueryInterface
,
ClassFactory_AddRef
,
ClassFactory_Release
,
VBScriptRegExpFactory_CreateInstance
,
ClassFactory_LockServer
};
static
IClassFactory
VBScriptRegExpFactory
=
{
&
VBScriptRegExpFactoryVtbl
};
/******************************************************************
* DllMain (vbscript.@)
*/
...
...
@@ -287,6 +298,9 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
if
(
IsEqualGUID
(
&
CLSID_VBScript
,
rclsid
))
{
TRACE
(
"(CLSID_VBScript %s %p)
\n
"
,
debugstr_guid
(
riid
),
ppv
);
return
IClassFactory_QueryInterface
(
&
VBScriptFactory
,
riid
,
ppv
);
}
else
if
(
IsEqualGUID
(
&
CLSID_VBScriptRegExp
,
rclsid
))
{
TRACE
(
"(CLSID_VBScriptRegExp %s %p)
\n
"
,
debugstr_guid
(
riid
),
ppv
);
return
IClassFactory_QueryInterface
(
&
VBScriptRegExpFactory
,
riid
,
ppv
);
}
FIXME
(
"%s %s %p
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
...
...
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