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
74977dae
Commit
74977dae
authored
Apr 19, 2007
by
EA Durbin
Committed by
Alexandre Julliard
Apr 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sxs: Add new dll stub.
parent
133b8bc3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
67 additions
and
0 deletions
+67
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/sxs/Makefile.in
+13
-0
sxs.c
dlls/sxs/sxs.c
+45
-0
sxs.spec
dlls/sxs/sxs.spec
+2
-0
No files found.
Makefile.in
View file @
74977dae
...
...
@@ -369,6 +369,7 @@ ALL_MAKEFILES = \
dlls/sti/Makefile
\
dlls/strmiids/Makefile
\
dlls/svrapi/Makefile
\
dlls/sxs/Makefile
\
dlls/tapi32/Makefile
\
dlls/twain_32/Makefile
\
dlls/unicows/Makefile
\
...
...
@@ -711,6 +712,7 @@ dlls/stdole32.tlb/Makefile: dlls/stdole32.tlb/Makefile.in dlls/Makedll.rules
dlls/sti/Makefile
:
dlls/sti/Makefile.in dlls/Makedll.rules
dlls/strmiids/Makefile
:
dlls/strmiids/Makefile.in dlls/Makeimplib.rules
dlls/svrapi/Makefile
:
dlls/svrapi/Makefile.in dlls/Makedll.rules
dlls/sxs/Makefile
:
dlls/sxs/Makefile.in dlls/Makedll.rules
dlls/tapi32/Makefile
:
dlls/tapi32/Makefile.in dlls/Makedll.rules
dlls/twain_32/Makefile
:
dlls/twain_32/Makefile.in dlls/Makedll.rules
dlls/unicows/Makefile
:
dlls/unicows/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
74977dae
...
...
@@ -20627,6 +20627,8 @@ ac_config_files="$ac_config_files dlls/strmiids/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/svrapi/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/sxs/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/tapi32/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/twain_32/Makefile"
...
...
@@ -21636,6 +21638,7 @@ do
"dlls/sti/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/sti/Makefile" ;;
"dlls/strmiids/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/strmiids/Makefile" ;;
"dlls/svrapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/svrapi/Makefile" ;;
"dlls/sxs/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/sxs/Makefile" ;;
"dlls/tapi32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/tapi32/Makefile" ;;
"dlls/twain_32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/twain_32/Makefile" ;;
"dlls/unicows/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/unicows/Makefile" ;;
...
...
configure.ac
View file @
74977dae
...
...
@@ -1704,6 +1704,7 @@ AC_CONFIG_FILES([dlls/stdole32.tlb/Makefile])
AC_CONFIG_FILES([dlls/sti/Makefile])
AC_CONFIG_FILES([dlls/strmiids/Makefile])
AC_CONFIG_FILES([dlls/svrapi/Makefile])
AC_CONFIG_FILES([dlls/sxs/Makefile])
AC_CONFIG_FILES([dlls/tapi32/Makefile])
AC_CONFIG_FILES([dlls/twain_32/Makefile])
AC_CONFIG_FILES([dlls/unicows/Makefile])
...
...
dlls/Makefile.in
View file @
74977dae
...
...
@@ -171,6 +171,7 @@ BASEDIRS = \
stdole32.tlb
\
sti
\
svrapi
\
sxs
\
tapi32
\
twain_32
\
unicows
\
...
...
dlls/sxs/Makefile.in
0 → 100644
View file @
74977dae
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
sxs.dll
IMPORTS
=
kernel32
C_SRCS
=
\
sxs.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/sxs/sxs.c
0 → 100644
View file @
74977dae
/*
* sxs main
*
* Copyright 2007 EA Durbin
*
* 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 <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
sxs
);
/***********************************************************************
* DllMain (SXS.@)
*
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
}
return
TRUE
;
}
dlls/sxs/sxs.spec
0 → 100644
View file @
74977dae
@ stub CreateAssemblyCache
@ stub CreateAssemblyNameObject
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