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
74e37bc3
Commit
74e37bc3
authored
Jun 23, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msscript.ocx: Added stub DLL.
parent
b80bbd59
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
89 additions
and
0 deletions
+89
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/msscript.ocx/Makefile.in
+4
-0
msscript.c
dlls/msscript.ocx/msscript.c
+77
-0
msscript.ocx.spec
dlls/msscript.ocx/msscript.ocx.spec
+5
-0
No files found.
configure
View file @
74e37bc3
...
@@ -1152,6 +1152,7 @@ enable_msls31
...
@@ -1152,6 +1152,7 @@ enable_msls31
enable_msnet32
enable_msnet32
enable_mspatcha
enable_mspatcha
enable_msrle32
enable_msrle32
enable_msscript_ocx
enable_mssign32
enable_mssign32
enable_mssip32
enable_mssip32
enable_mstask
enable_mstask
...
@@ -17426,6 +17427,7 @@ wine_fn_config_dll msnet32 enable_msnet32
...
@@ -17426,6 +17427,7 @@ wine_fn_config_dll msnet32 enable_msnet32
wine_fn_config_dll mspatcha enable_mspatcha implib
wine_fn_config_dll mspatcha enable_mspatcha implib
wine_fn_config_dll msrle32 enable_msrle32 po
wine_fn_config_dll msrle32 enable_msrle32 po
wine_fn_config_test dlls/msrle32/tests msrle32_test
wine_fn_config_test dlls/msrle32/tests msrle32_test
wine_fn_config_dll msscript.ocx enable_msscript_ocx
wine_fn_config_dll mssign32 enable_mssign32
wine_fn_config_dll mssign32 enable_mssign32
wine_fn_config_dll mssip32 enable_mssip32
wine_fn_config_dll mssip32 enable_mssip32
wine_fn_config_dll mstask enable_mstask clean
wine_fn_config_dll mstask enable_mstask clean
...
...
configure.ac
View file @
74e37bc3
...
@@ -3101,6 +3101,7 @@ WINE_CONFIG_DLL(msnet32)
...
@@ -3101,6 +3101,7 @@ WINE_CONFIG_DLL(msnet32)
WINE_CONFIG_DLL(mspatcha,,[implib])
WINE_CONFIG_DLL(mspatcha,,[implib])
WINE_CONFIG_DLL(msrle32,,[po])
WINE_CONFIG_DLL(msrle32,,[po])
WINE_CONFIG_TEST(dlls/msrle32/tests)
WINE_CONFIG_TEST(dlls/msrle32/tests)
WINE_CONFIG_DLL(msscript.ocx)
WINE_CONFIG_DLL(mssign32)
WINE_CONFIG_DLL(mssign32)
WINE_CONFIG_DLL(mssip32)
WINE_CONFIG_DLL(mssip32)
WINE_CONFIG_DLL(mstask,,[clean])
WINE_CONFIG_DLL(mstask,,[clean])
...
...
dlls/msscript.ocx/Makefile.in
0 → 100644
View file @
74e37bc3
MODULE
=
msscript.ocx
C_SRCS
=
\
msscript.c
dlls/msscript.ocx/msscript.c
0 → 100644
View file @
74e37bc3
/*
* Copyright 2015 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
*/
#include "windows.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msscript
);
/******************************************************************
* DllMain (msscript.ocx.@)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
LPVOID
lpv
)
{
TRACE
(
"(%p %d %p)
\n
"
,
instance
,
reason
,
lpv
);
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
break
;
}
return
TRUE
;
}
/***********************************************************************
* DllGetClassObject (msscript.ocx.@)
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"%s %s %p
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllCanUnloadNow (msscript.ocx.@)
*/
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
TRACE
(
"
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* DllRegisterServer (msscript.ocx.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"()
\n
"
);
return
E_NOTIMPL
;
}
/***********************************************************************
* DllUnregisterServer (msscript.ocx.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
TRACE
(
"()
\n
"
);
return
E_NOTIMPL
;
}
dlls/msscript.ocx/msscript.ocx.spec
0 → 100644
View file @
74e37bc3
@ stub DLLGetDocumentation
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
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