2018-06-21 08:54:43 +02:00
|
|
|
|
/*
|
2023-03-08 00:30:20 +01:00
|
|
|
|
* Copyright (c) 2023 ETH Zürich, Educational Development and Technology (LET)
|
2018-06-21 08:54:43 +02:00
|
|
|
|
*
|
|
|
|
|
* 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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-10-01 11:30:53 +02:00
|
|
|
|
namespace SafeExamBrowser.Monitoring.Contracts.Applications.Events
|
2018-06-21 08:54:43 +02:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-10-09 14:04:27 +02:00
|
|
|
|
/// Indicates that the Windows Explorer has been started.
|
2018-06-21 08:54:43 +02:00
|
|
|
|
/// </summary>
|
2018-07-06 15:57:38 +02:00
|
|
|
|
public delegate void ExplorerStartedEventHandler();
|
2018-06-21 08:54:43 +02:00
|
|
|
|
}
|