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
b8fc901d
Commit
b8fc901d
authored
Jul 07, 2015
by
Austin English
Committed by
Alexandre Julliard
Jul 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
davclnt: Add stub dll.
parent
8723d345
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
70 additions
and
0 deletions
+70
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/davclnt/Makefile.in
+4
-0
davclnt.spec
dlls/davclnt/davclnt.spec
+23
-0
main.c
dlls/davclnt/main.c
+40
-0
No files found.
configure
View file @
b8fc901d
...
...
@@ -1022,6 +1022,7 @@ enable_d3dx9_41
enable_d3dx9_42
enable_d3dx9_43
enable_d3dxof
enable_davclnt
enable_dbgeng
enable_dbghelp
enable_dciman32
...
...
@@ -17197,6 +17198,7 @@ wine_fn_config_dll d3dx9_42 enable_d3dx9_42
wine_fn_config_dll d3dx9_43 enable_d3dx9_43
wine_fn_config_dll d3dxof enable_d3dxof clean,implib
wine_fn_config_test dlls/d3dxof/tests d3dxof_test
wine_fn_config_dll davclnt enable_davclnt
wine_fn_config_dll dbgeng enable_dbgeng implib
wine_fn_config_dll dbghelp enable_dbghelp implib
wine_fn_config_dll dciman32 enable_dciman32 implib
...
...
configure.ac
View file @
b8fc901d
...
...
@@ -2894,6 +2894,7 @@ WINE_CONFIG_DLL(d3dx9_42)
WINE_CONFIG_DLL(d3dx9_43)
WINE_CONFIG_DLL(d3dxof,,[clean,implib])
WINE_CONFIG_TEST(dlls/d3dxof/tests)
WINE_CONFIG_DLL(davclnt)
WINE_CONFIG_DLL(dbgeng,,[implib])
WINE_CONFIG_DLL(dbghelp,,[implib])
WINE_CONFIG_DLL(dciman32,,[implib])
...
...
dlls/davclnt/Makefile.in
0 → 100644
View file @
b8fc901d
MODULE
=
davclnt.dll
C_SRCS
=
\
main.c
dlls/davclnt/davclnt.spec
0 → 100644
View file @
b8fc901d
@ stub DavCancelConnectionsToServer
@ stub DavFreeUsedDiskSpace
@ stub DavGetDiskSpaceUsage
@ stub DavGetTheLockOwnerOfTheFile
@ stub DavInvalidateCache
@ stub DavRegisterAuthCallback
@ stub DavUnregisterAuthCallback
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ stdcall -private DllMain(long long ptr)
@ stub NPAddConnection3
@ stub NPAddConnection
@ stub NPCancelConnection
@ stub NPCloseEnum
@ stub NPEnumResource
@ stub NPFormatNetworkName
@ stub NPGetCaps
@ stub NPGetConnection
@ stub NPGetResourceInformation
@ stub NPGetResourceParent
@ stub NPGetUniversalName
@ stub NPGetUser
@ stub NPOpenEnum
dlls/davclnt/main.c
0 → 100644
View file @
b8fc901d
/*
* WebDav Client
*
* Copyright 2015 Austin English
*
* 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 "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
break
;
}
return
TRUE
;
}
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