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
d8d77809
Commit
d8d77809
authored
May 21, 2011
by
Austin English
Committed by
Alexandre Julliard
May 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regapi: Add a stub dll.
parent
14067ac1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
121 additions
and
0 deletions
+121
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/regapi/Makefile.in
+6
-0
main.c
dlls/regapi/main.c
+44
-0
regapi.spec
dlls/regapi/regapi.spec
+69
-0
No files found.
configure
View file @
d8d77809
...
...
@@ -15391,6 +15391,7 @@ wine_fn_config_dll rasapi16.dll16 enable_win16
wine_fn_config_dll rasapi32 enable_rasapi32 implib
wine_fn_config_test dlls/rasapi32/tests rasapi32_test
wine_fn_config_dll rasdlg enable_rasdlg implib
wine_fn_config_dll regapi enable_regapi
wine_fn_config_dll resutils enable_resutils implib
wine_fn_config_dll riched20 enable_riched20 implib
wine_fn_config_test dlls/riched20/tests riched20_test
...
...
configure.ac
View file @
d8d77809
...
...
@@ -2764,6 +2764,7 @@ WINE_CONFIG_DLL(rasapi16.dll16,enable_win16)
WINE_CONFIG_DLL(rasapi32,,[implib])
WINE_CONFIG_TEST(dlls/rasapi32/tests)
WINE_CONFIG_DLL(rasdlg,,[implib])
WINE_CONFIG_DLL(regapi)
WINE_CONFIG_DLL(resutils,,[implib])
WINE_CONFIG_DLL(riched20,,[implib])
WINE_CONFIG_TEST(dlls/riched20/tests)
...
...
dlls/regapi/Makefile.in
0 → 100644
View file @
d8d77809
MODULE
=
regapi.dll
C_SRCS
=
\
main.c
@MAKE_DLL_RULES@
dlls/regapi/main.c
0 → 100644
View file @
d8d77809
/*
* regapi implementation
*
* Copyright 2011 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 <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
regapi
);
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
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
default:
break
;
}
return
TRUE
;
}
dlls/regapi/regapi.spec
0 → 100644
View file @
d8d77809
@ stub RegBuildNumberQuery
@ stub RegCdCreateA
@ stub RegCdCreateW
@ stub RegCdDeleteA
@ stub RegCdDeleteW
@ stub RegCdEnumerateA
@ stub RegCdEnumerateW
@ stub RegCdQueryA
@ stub RegCdQueryW
@ stub RegCloseServer
@ stub RegConsoleShadowQueryA
@ stub RegConsoleShadowQueryW
@ stub RegDefaultUserConfigQueryA
@ stub RegDefaultUserConfigQueryW
@ stub RegDenyTSConnectionsPolicy
@ stub RegFreeUtilityCommandList
@ stub RegGetMachinePolicy
@ stub RegGetMachinePolicyEx
@ stub RegGetTServerVersion
@ stub RegGetUserConfigFromUserParameters
@ stub RegGetUserPolicy
@ stub RegIsMachineInHelpMode
@ stub RegIsMachinePolicyAllowHelp
@ stub RegIsTServer
@ stub RegMergeUserConfigWithUserParameters
@ stub RegOpenServerA
@ stub RegOpenServerW
@ stub RegPdCreateA
@ stub RegPdCreateW
@ stub RegPdDeleteA
@ stub RegPdDeleteW
@ stub RegPdEnumerateA
@ stub RegPdEnumerateW
@ stub RegPdQueryA
@ stub RegPdQueryW
@ stub RegQueryOEMId
@ stub RegQueryUtilityCommandList
@ stub RegSAMUserConfig
@ stub RegUserConfigDelete
@ stub RegUserConfigQuery
@ stub RegUserConfigRename
@ stub RegUserConfigSet
@ stub RegWdCreateA
@ stub RegWdCreateW
@ stub RegWdDeleteA
@ stub RegWdDeleteW
@ stub RegWdEnumerateA
@ stub RegWdEnumerateW
@ stub RegWdQueryA
@ stub RegWdQueryW
@ stub RegWinStationAccessCheck
@ stub RegWinStationCreateA
@ stub RegWinStationCreateW
@ stub RegWinStationDeleteA
@ stub RegWinStationDeleteW
@ stub RegWinStationEnumerateA
@ stub RegWinStationEnumerateW
@ stub RegWinStationQueryA
@ stub RegWinStationQueryDefaultSecurity
@ stub RegWinStationQueryEx
@ stub RegWinStationQueryNumValueW
@ stub RegWinStationQuerySecurityA
@ stub RegWinStationQuerySecurityW
@ stub RegWinStationQueryValueW
@ stub RegWinStationQueryW
@ stub RegWinStationSetNumValueW
@ stub RegWinStationSetSecurityA
@ stub RegWinStationSetSecurityW
@ stub WaitForTSConnectionsPolicyChanges
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