From 8ac94d67d0ff0e660b5b9f33cdb3678fa83c78ec Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sat, 8 Jul 2006 18:05:06 +0000 Subject: [PATCH] - Remove extern (I don't see a reason to use it in function declarations) - Add co_CsrNotifyScreenSaver(), so win32k builds properly - Make style better svn path=/trunk/; revision=22927 --- reactos/subsystems/win32/win32k/include/csr.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/reactos/subsystems/win32/win32k/include/csr.h b/reactos/subsystems/win32/win32k/include/csr.h index 51cce282619..64031180025 100644 --- a/reactos/subsystems/win32/win32k/include/csr.h +++ b/reactos/subsystems/win32/win32k/include/csr.h @@ -12,14 +12,13 @@ extern PEPROCESS CsrProcess; -extern NTSTATUS FASTCALL CsrInit(void); -extern NTSTATUS FASTCALL co_CsrNotify(PCSR_API_MESSAGE Request); -extern NTSTATUS FASTCALL CsrCloseHandle(HANDLE Handle); -NTSTATUS -STDCALL -CsrInsertObject(HANDLE ObjectHandle, - ACCESS_MASK DesiredAccess, - PHANDLE Handle); +NTSTATUS FASTCALL CsrInit(void); +NTSTATUS FASTCALL co_CsrNotify(PCSR_API_MESSAGE Request); +NTSTATUS FASTCALL co_CsrNotifyScreenSaver(PCSR_API_MESSAGE Request); +NTSTATUS FASTCALL CsrCloseHandle(HANDLE Handle); +NTSTATUS WINAPI CsrInsertObject(HANDLE ObjectHandle, + ACCESS_MASK DesiredAccess, + PHANDLE Handle); #endif /* CSR_H_INCLUDED */