Commit d52dafb5 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Add a few missing #includes.

parent d1a2dd79
......@@ -22,6 +22,7 @@
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
......
......@@ -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);
......
......@@ -27,6 +27,7 @@
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "objbase.h"
#include "wine/debug.h"
......
......@@ -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);
......
......@@ -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]);
......
......@@ -26,6 +26,7 @@
#include "guiddef.h"
#include "wintrust.h"
#include "mscat.h"
#include "objbase.h"
#include "wine/debug.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment