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
d52dafb5
Commit
d52dafb5
authored
Dec 07, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Dec 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a few missing #includes.
parent
d1a2dd79
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
2 deletions
+8
-2
main.c
dlls/dpnhpast/main.c
+1
-0
imalloc.c
dlls/mapi32/imalloc.c
+1
-0
msisys.c
dlls/msisys/msisys.c
+1
-0
browsr.c
dlls/netapi32/browsr.c
+1
-0
rsaenh.c
dlls/rsaenh/rsaenh.c
+3
-2
wintrust_main.c
dlls/wintrust/wintrust_main.c
+1
-0
No files found.
dlls/dpnhpast/main.c
View file @
d52dafb5
...
...
@@ -22,6 +22,7 @@
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dpnhpast
);
...
...
dlls/mapi32/imalloc.c
View file @
d52dafb5
...
...
@@ -31,6 +31,7 @@
#include "winternl.h"
#include "objbase.h"
#include "shlwapi.h"
#include "mapiutil.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mapi
);
...
...
dlls/msisys/msisys.c
View file @
d52dafb5
...
...
@@ -27,6 +27,7 @@
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "objbase.h"
#include "wine/debug.h"
...
...
dlls/netapi32/browsr.c
View file @
d52dafb5
...
...
@@ -25,6 +25,7 @@
#include "winerror.h"
#include "lmcons.h"
#include "lmbrowsr.h"
#include "lmshare.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
netapi32
);
...
...
dlls/rsaenh/rsaenh.c
View file @
d52dafb5
...
...
@@ -36,6 +36,7 @@
#include "lmcons.h"
#include "handle.h"
#include "implglue.h"
#include "objbase.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
crypt
);
...
...
@@ -3632,7 +3633,7 @@ static const WCHAR szDefaultKeys[2][65] = {
* Microsoft Strong Cryptographpic Provider
* - HKLM\Software\Microsoft\Cryptography\Defaults\Provider Types\Type 001
*/
HRESULT
WINAPI
DllRegisterServer
()
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
HKEY
key
;
DWORD
dp
;
...
...
@@ -3709,7 +3710,7 @@ HRESULT WINAPI DllRegisterServer()
* NOTES
* For the relevant keys see DllRegisterServer.
*/
HRESULT
WINAPI
DllUnregisterServer
()
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
RegDeleteKeyW
(
HKEY_LOCAL_MACHINE
,
szProviderKeys
[
0
]);
RegDeleteKeyW
(
HKEY_LOCAL_MACHINE
,
szProviderKeys
[
1
]);
...
...
dlls/wintrust/wintrust_main.c
View file @
d52dafb5
...
...
@@ -26,6 +26,7 @@
#include "guiddef.h"
#include "wintrust.h"
#include "mscat.h"
#include "objbase.h"
#include "wine/debug.h"
...
...
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