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
eb8b1657
Commit
eb8b1657
authored
Sep 30, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Sep 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fltlib: Add a stub dll.
parent
83e91274
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
97 additions
and
0 deletions
+97
-0
configure
configure
+9
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/fltlib/Makefile.in
+13
-0
fltlib.c
dlls/fltlib/fltlib.c
+45
-0
fltlib.spec
dlls/fltlib/fltlib.spec
+29
-0
No files found.
configure
View file @
eb8b1657
...
...
@@ -14860,6 +14860,14 @@ dlls/faultrep/Makefile: dlls/faultrep/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/faultrep/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/fltlib/Makefile"
test
"x
$enable_fltlib
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
fltlib"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/fltlib/Makefile: dlls/fltlib/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/fltlib/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/fusion/Makefile"
test
"x
$enable_fusion
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
fusion"
...
...
@@ -18846,6 +18854,7 @@ do
"dlls/dxgi/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/dxgi/tests/Makefile" ;;
"dlls/dxguid/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/dxguid/Makefile" ;;
"dlls/faultrep/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/faultrep/Makefile" ;;
"dlls/fltlib/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/fltlib/Makefile" ;;
"dlls/fusion/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/fusion/Makefile" ;;
"dlls/fusion/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/fusion/tests/Makefile" ;;
"dlls/gdi32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/gdi32/Makefile" ;;
...
...
configure.ac
View file @
eb8b1657
...
...
@@ -2220,6 +2220,7 @@ WINE_CONFIG_MAKEFILE([dlls/dxgi/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_D
WINE_CONFIG_MAKEFILE([dlls/dxgi/tests/Makefile],[dlls/Maketest.rules],[dlls],[ALL_TEST_DIRS],[enable_tests])
WINE_CONFIG_MAKEFILE([dlls/dxguid/Makefile],[dlls/Makeimplib.rules],[dlls],[ALL_IMPLIB_DIRS])
WINE_CONFIG_MAKEFILE([dlls/faultrep/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/fltlib/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/fusion/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/fusion/tests/Makefile],[dlls/Maketest.rules],[dlls],[ALL_TEST_DIRS],[enable_tests])
WINE_CONFIG_MAKEFILE([dlls/gdi32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
...
...
dlls/fltlib/Makefile.in
0 → 100644
View file @
eb8b1657
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
fltlib.dll
IMPORTS
=
kernel32
C_SRCS
=
\
fltlib.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/fltlib/fltlib.c
0 → 100644
View file @
eb8b1657
/*
* Copyright 2009 Detlef Riekenberg
*
* 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
(
fltlib
);
/*****************************************************
* DllMain
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* use native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
}
return
TRUE
;
}
dlls/fltlib/fltlib.spec
0 → 100644
View file @
eb8b1657
@ stub FilterAttach
@ stub FilterAttachAtAltitude
@ stub FilterClose
@ stub FilterConnectCommunicationPort
@ stub FilterCreate
@ stub FilterDetach
@ stub FilterFindClose
@ stub FilterFindFirst
@ stub FilterFindNext
@ stub FilterGetDosName
@ stub FilterGetInformation
@ stub FilterGetMessage
@ stub FilterInstanceClose
@ stub FilterInstanceCreate
@ stub FilterInstanceFindClose
@ stub FilterInstanceFindFirst
@ stub FilterInstanceFindNext
@ stub FilterInstanceGetInformation
@ stub FilterLoad
@ stub FilterReplyMessage
@ stub FilterSendMessage
@ stub FilterUnload
@ stub FilterVolumeClose
@ stub FilterVolumeFindClose
@ stub FilterVolumeFindFirst
@ stub FilterVolumeFindNext
@ stub FilterVolumeInstanceFindClose
@ stub FilterVolumeInstanceFindFirst
@ stub FilterVolumeInstanceFindNext
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