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
6103f312
Commit
6103f312
authored
Oct 28, 2007
by
Alexander Nicolaysen Sørnes
Committed by
Alexandre Julliard
Oct 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscat32: Add stub dll.
parent
a7f4e8bf
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
101 additions
and
0 deletions
+101
-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/mscat32/Makefile.in
+13
-0
main.c
dlls/mscat32/main.c
+47
-0
mscat32.spec
dlls/mscat32/mscat32.spec
+34
-0
No files found.
Makefile.in
View file @
6103f312
...
...
@@ -289,6 +289,7 @@ ALL_MAKEFILES = \
dlls/msacm32/Makefile
\
dlls/msacm32/tests/Makefile
\
dlls/msadp32.acm/Makefile
\
dlls/mscat32/Makefile
\
dlls/mscms/Makefile
\
dlls/mscms/tests/Makefile
\
dlls/mscoree/Makefile
\
...
...
@@ -665,6 +666,7 @@ dlls/msacm32.drv/Makefile: dlls/msacm32.drv/Makefile.in dlls/Makedll.rules
dlls/msacm32/Makefile
:
dlls/msacm32/Makefile.in dlls/Makedll.rules
dlls/msacm32/tests/Makefile
:
dlls/msacm32/tests/Makefile.in dlls/Maketest.rules
dlls/msadp32.acm/Makefile
:
dlls/msadp32.acm/Makefile.in dlls/Makedll.rules
dlls/mscat32/Makefile
:
dlls/mscat32/Makefile.in dlls/Makedll.rules
dlls/mscms/Makefile
:
dlls/mscms/Makefile.in dlls/Makedll.rules
dlls/mscms/tests/Makefile
:
dlls/mscms/tests/Makefile.in dlls/Maketest.rules
dlls/mscoree/Makefile
:
dlls/mscoree/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
6103f312
...
...
@@ -20776,6 +20776,8 @@ ac_config_files="$ac_config_files dlls/msacm32/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/msadp32.acm/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/mscat32/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/mscms/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/mscms/tests/Makefile"
...
...
@@ -21933,6 +21935,7 @@ do
"dlls/msacm32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msacm32/Makefile" ;;
"dlls/msacm32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msacm32/tests/Makefile" ;;
"dlls/msadp32.acm/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msadp32.acm/Makefile" ;;
"dlls/mscat32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/mscat32/Makefile" ;;
"dlls/mscms/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/mscms/Makefile" ;;
"dlls/mscms/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/mscms/tests/Makefile" ;;
"dlls/mscoree/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/mscoree/Makefile" ;;
...
...
configure.ac
View file @
6103f312
...
...
@@ -1705,6 +1705,7 @@ AC_CONFIG_FILES([dlls/msacm32.drv/Makefile])
AC_CONFIG_FILES([dlls/msacm32/Makefile])
AC_CONFIG_FILES([dlls/msacm32/tests/Makefile])
AC_CONFIG_FILES([dlls/msadp32.acm/Makefile])
AC_CONFIG_FILES([dlls/mscat32/Makefile])
AC_CONFIG_FILES([dlls/mscms/Makefile])
AC_CONFIG_FILES([dlls/mscms/tests/Makefile])
AC_CONFIG_FILES([dlls/mscoree/Makefile])
...
...
dlls/Makefile.in
View file @
6103f312
...
...
@@ -112,6 +112,7 @@ BASEDIRS = \
msacm32
\
msacm32.drv
\
msadp32.acm
\
mscat32
\
mscms
\
mscoree
\
msdmo
\
...
...
dlls/mscat32/Makefile.in
0 → 100644
View file @
6103f312
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
mscat32.dll
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/mscat32/main.c
0 → 100644
View file @
6103f312
/* mscat32.dll - Backend for Microsoft's MakeCat command-line tool
*
* Copyright (C) 2007 Alexander N. Sørnes <alex@thehandofagony.com>
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mscat
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
if
(
fdwReason
==
DLL_WINE_PREATTACH
)
return
FALSE
;
/* prefer native version */
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
{
DisableThreadLibraryCalls
(
hinstDLL
);
/* FIXME: Initialisation */
}
else
if
(
fdwReason
==
DLL_PROCESS_DETACH
)
{
/* FIXME: Cleanup */
}
return
TRUE
;
}
dlls/mscat32/mscat32.spec
0 → 100644
View file @
6103f312
@ stub CryptCATVerifyMember
@ stub CryptCATAdminAcquireContext
@ stub CryptCATAdminAddCatalog
@ stub CryptCATAdminCalcHashFromFileHandle
@ stub CryptCATAdminEnumCatalogFromHash
@ stub CryptCATAdminReleaseCatalogContext
@ stub CryptCATAdminReleaseContext
@ stub CryptCATCDFClose
@ stub CryptCATCDFEnumAttributes
@ stub CryptCATCDFEnumAttributesWithCDFTag
@ stub CryptCATCDFEnumCatAttributes
@ stub CryptCATCDFEnumMembers
@ stub CryptCATCDFEnumMembersByCDFTag
@ stub CryptCATCDFOpen
@ stub CryptCATCatalogInfoFromContext
@ stub CryptCATClose
@ stub CryptCATEnumerateAttr
@ stub CryptCATEnumerateCatAttr
@ stub CryptCATEnumerateMember
@ stub CryptCATGetAttrInfo
@ stub CryptCATGetCatAttrInfo
@ stub CryptCATGetMemberInfo
@ stub CryptCATHandleFromStore
@ stub CryptCATOpen
@ stub CryptCATPersistStore
@ stub CryptCATPutAttrInfo
@ stub CryptCATPutCatAttrInfo
@ stub CryptCATPutMemberInfo
@ stub CryptCATStoreFromHandle
@ stub DllRegisterServer
@ stub DllUnregisterServer
@ stub IsCatalogFile
@ stub MsCatConstructHashTag
@ stub MsCatFreeHashTag
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