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
be70190c
Commit
be70190c
authored
Feb 08, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
connect: Add stub dll.
parent
ecdaf568
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
0 deletions
+60
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/connect/Makefile.in
+4
-0
connect.spec
dlls/connect/connect.spec
+15
-0
main.c
dlls/connect/main.c
+38
-0
No files found.
configure
View file @
be70190c
...
...
@@ -942,6 +942,7 @@ enable_comctl32
enable_comdlg32
enable_compstui
enable_comsvcs
enable_connect
enable_credui
enable_crtdll
enable_crypt32
...
...
@@ -17080,6 +17081,7 @@ wine_fn_config_dll commdlg.dll16 enable_win16
wine_fn_config_dll compobj.dll16 enable_win16
wine_fn_config_dll compstui enable_compstui implib
wine_fn_config_dll comsvcs enable_comsvcs implib
wine_fn_config_dll connect enable_connect
wine_fn_config_dll credui enable_credui implib,po
wine_fn_config_test dlls/credui/tests credui_test
wine_fn_config_dll crtdll enable_crtdll implib
...
...
configure.ac
View file @
be70190c
...
...
@@ -2793,6 +2793,7 @@ WINE_CONFIG_DLL(commdlg.dll16,enable_win16)
WINE_CONFIG_DLL(compobj.dll16,enable_win16)
WINE_CONFIG_DLL(compstui,,[implib])
WINE_CONFIG_DLL(comsvcs,,[implib])
WINE_CONFIG_DLL(connect)
WINE_CONFIG_DLL(credui,,[implib,po])
WINE_CONFIG_TEST(dlls/credui/tests)
WINE_CONFIG_DLL(crtdll,,[implib])
...
...
dlls/connect/Makefile.in
0 → 100644
View file @
be70190c
MODULE
=
connect.dll
C_SRCS
=
\
main.c
dlls/connect/connect.spec
0 → 100644
View file @
be70190c
@ stub AddConnectionOptionListEntries
@ stub CreateVPNConnection
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ stub GetInternetConnected
@ stub GetNetworkConnected
@ stub GetVPNConnected
@ stub HrIsInternetConnected
@ stub HrIsInternetConnectedGUID
@ stub IsInternetConnected
@ stub IsInternetConnectedGUID
@ stub IsUniqueConnectionName
@ stub RegisterPageWithPage
@ stub UnregisterPage
@ stub UnregisterPagesLink
dlls/connect/main.c
0 → 100644
View file @
be70190c
/*
*
* 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