Restore SEBPatch
This commit is contained in:
17
SafeExamBrowser.WindowsApi/Delegates/EnumDesktopDelegate.cs
Normal file
17
SafeExamBrowser.WindowsApi/Delegates/EnumDesktopDelegate.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright (c) 2024 ETH Zürich, IT Services
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace SafeExamBrowser.WindowsApi.Delegates
|
||||
{
|
||||
/// <remarks>
|
||||
/// See https://msdn.microsoft.com/en-us/library/windows/desktop/ms682612(v=vs.85).aspx
|
||||
/// </remarks>
|
||||
internal delegate bool EnumDesktopDelegate(string lpszDesktop, IntPtr lParam);
|
||||
}
|
17
SafeExamBrowser.WindowsApi/Delegates/EnumWindowsDelegate.cs
Normal file
17
SafeExamBrowser.WindowsApi/Delegates/EnumWindowsDelegate.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright (c) 2024 ETH Zürich, IT Services
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace SafeExamBrowser.WindowsApi.Delegates
|
||||
{
|
||||
/// <remarks>
|
||||
/// See https://msdn.microsoft.com/en-us/library/windows/desktop/ms633498(v=vs.85).aspx
|
||||
/// </remarks>
|
||||
internal delegate bool EnumWindowsDelegate(IntPtr hWnd, IntPtr lParam);
|
||||
}
|
17
SafeExamBrowser.WindowsApi/Delegates/EventDelegate.cs
Normal file
17
SafeExamBrowser.WindowsApi/Delegates/EventDelegate.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright (c) 2024 ETH Zürich, IT Services
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace SafeExamBrowser.WindowsApi.Delegates
|
||||
{
|
||||
/// <remarks>
|
||||
/// See https://docs.microsoft.com/de-de/windows/desktop/api/winuser/nc-winuser-wineventproc
|
||||
/// </remarks>
|
||||
internal delegate void EventDelegate(IntPtr hWinEventHook, uint eventType, IntPtr hwnd, int idObject, int idChild, uint dwEventThread, uint dwmsEventTime);
|
||||
}
|
17
SafeExamBrowser.WindowsApi/Delegates/HookDelegate.cs
Normal file
17
SafeExamBrowser.WindowsApi/Delegates/HookDelegate.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright (c) 2024 ETH Zürich, IT Services
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace SafeExamBrowser.WindowsApi.Delegates
|
||||
{
|
||||
/// <remarks>
|
||||
/// See https://docs.microsoft.com/de-de/windows/desktop/api/winuser/nc-winuser-hookproc
|
||||
/// </remarks>
|
||||
internal delegate IntPtr HookDelegate(int nCode, IntPtr wParam, IntPtr lParam);
|
||||
}
|
Reference in New Issue
Block a user