From af7edaaf75d4c41e0c0602a5b02c80ff6964b2f9 Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Thu, 11 Aug 2005 21:46:37 +0000 Subject: [PATCH 1/1] Minor changes to some API signatures. svn path=/trunk/; revision=17320 --- reactos/include/subsys/csr/server.h | 2 +- reactos/include/subsys/win/base.h | 6 ++++-- reactos/include/subsys/win/windows.h | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/reactos/include/subsys/csr/server.h b/reactos/include/subsys/csr/server.h index 6fb255f31c7..5600868605e 100644 --- a/reactos/include/subsys/csr/server.h +++ b/reactos/include/subsys/csr/server.h @@ -37,7 +37,7 @@ typedef struct _CSR_WAIT } CSR_WAIT, * PCSR_WAIT; -typedef VOID (STDCALL * CSR_SERVER_THREAD)(PVOID); +typedef VOID (CALLBACK * CSR_SERVER_THREAD)(PVOID); /* symbols exported by native DLL csrsrv.dll */ diff --git a/reactos/include/subsys/win/base.h b/reactos/include/subsys/win/base.h index 8a551a53b3f..f08bd8d07f1 100644 --- a/reactos/include/subsys/win/base.h +++ b/reactos/include/subsys/win/base.h @@ -7,8 +7,10 @@ #define WIN_SRV_BASE 1 -NTSTATUS STDCALL BaseSetProcessCreateNotify (); -NTSTATUS STDCALL ServerDllInitialization (); +typedef VOID (CALLBACK * BASE_PROCESS_CREATE_NOTIFY_ROUTINE)(PVOID); + +NTSTATUS STDCALL BaseSetProcessCreateNotify (BASE_PROCESS_CREATE_NOTIFY_ROUTINE); +NTSTATUS STDCALL ServerDllInitialization (ULONG,LPWSTR*); #endif /* ndef __INCLUDE_WIN_BASE_H */ diff --git a/reactos/include/subsys/win/windows.h b/reactos/include/subsys/win/windows.h index 94525487b21..4cda9392de8 100644 --- a/reactos/include/subsys/win/windows.h +++ b/reactos/include/subsys/win/windows.h @@ -5,11 +5,11 @@ /* w32 console server */ #define WIN_SRV_WIN_CONSOLE 2 -NTSTATUS STDCALL ConServerDllInitialization (); +NTSTATUS STDCALL ConServerDllInitialization (ULONG,LPWSTR*); /* w32 user server */ #define WIN_SRV_WIN_USER 3 -NTSTATUS STDCALL UserServerDllInitialization (); +NTSTATUS STDCALL UserServerDllInitialization (ULONG,LPWSTR*); #endif /* ndef __INCLUDE_WIN_WINDOWS_H */ -- 2.17.1