Author: fireball Date: Sat Jul 8 22:05:06 2006 New Revision: 22927
URL: http://svn.reactos.org/svn/reactos?rev=22927&view=rev Log: - Remove extern (I don't see a reason to use it in function declarations) - Add co_CsrNotifyScreenSaver(), so win32k builds properly - Make style better
Modified: trunk/reactos/subsystems/win32/win32k/include/csr.h
Modified: trunk/reactos/subsystems/win32/win32k/include/csr.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/csr.h (original) +++ trunk/reactos/subsystems/win32/win32k/include/csr.h Sat Jul 8 22:05:06 2006 @@ -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 */