Author: ekohl
Date: Sun Aug 16 15:44:01 2015
New Revision: 68718
URL:
http://svn.reactos.org/svn/reactos?rev=68718&view=rev
Log:
[SFC][SFC_OS]
Add logon notification functions to sfc.dll and sfc_os.dll.
Modified:
trunk/reactos/dll/win32/sfc/sfc.spec
trunk/reactos/dll/win32/sfc_os/sfc_os.c
trunk/reactos/dll/win32/sfc_os/sfc_os.spec
Modified: trunk/reactos/dll/win32/sfc/sfc.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/sfc/sfc.spec?rev…
==============================================================================
--- trunk/reactos/dll/win32/sfc/sfc.spec [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/sfc/sfc.spec [iso-8859-1] Sun Aug 16 15:44:01 2015
@@ -12,6 +12,6 @@
@ stdcall SRSetRestorePointW (ptr ptr)
@ stdcall SfcGetNextProtectedFile (ptr ptr) sfc_os.SfcGetNextProtectedFile
@ stdcall SfcIsFileProtected (ptr wstr) sfc_os.SfcIsFileProtected
-@ stub SfcWLEventLogoff
-@ stub SfcWLEventLogon
+@ stdcall SfcWLEventLogoff (ptr) sfc_os.SfcWLEventLogoff
+@ stdcall SfcWLEventLogon (ptr) sfc_os.SfcWLEventLogon
@ stdcall SfpVerifyFile (str str long)
Modified: trunk/reactos/dll/win32/sfc_os/sfc_os.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/sfc_os/sfc_os.c?…
==============================================================================
--- trunk/reactos/dll/win32/sfc_os/sfc_os.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/sfc_os/sfc_os.c [iso-8859-1] Sun Aug 16 15:44:01 2015
@@ -25,6 +25,8 @@
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
+#include <winuser.h>
+#include <winwlx.h>
#define NDEBUG
#include <debug.h>
@@ -171,3 +173,43 @@
/* Always return success */
return 0;
}
+
+/******************************************************************
+ * SfcWLEventLogoff [sfc_os.@]
+ *
+ * Logoff notification function
+ *
+ * PARAMS
+ * pInfo [I] Pointer to logoff notification information
+ *
+ * RETURNS
+ * nothing
+ *
+ */
+VOID
+WINAPI
+SfcWLEventLogoff(
+ PWLX_NOTIFICATION_INFO pInfo)
+{
+ UNIMPLEMENTED;
+}
+
+/******************************************************************
+ * SfcWLEventLogon [sfc_os.@]
+ *
+ * Logon notification function
+ *
+ * PARAMS
+ * pInfo [I] Pointer to logon notification information
+ *
+ * RETURNS
+ * nothing
+ *
+ */
+VOID
+WINAPI
+SfcWLEventLogon(
+ PWLX_NOTIFICATION_INFO pInfo)
+{
+ UNIMPLEMENTED;
+}
Modified: trunk/reactos/dll/win32/sfc_os/sfc_os.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/sfc_os/sfc_os.sp…
==============================================================================
--- trunk/reactos/dll/win32/sfc_os/sfc_os.spec [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/sfc_os/sfc_os.spec [iso-8859-1] Sun Aug 16 15:44:01 2015
@@ -8,5 +8,5 @@
@ stdcall SfcGetNextProtectedFile(ptr ptr)
@ stdcall SfcIsFileProtected(ptr wstr)
@ stdcall SfcIsKeyProtected(long wstr long)
-@ stub SfcWLEventLogoff
-@ stub SfcWLEventLogon
+@ stdcall SfcWLEventLogoff(ptr)
+@ stdcall SfcWLEventLogon(ptr)