20 lines
311 B
C++
20 lines
311 B
C++
// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if LC_VERSION == 1
|
|
|
|
#include "LPP_API.h"
|
|
|
|
|
|
namespace restart
|
|
{
|
|
void Startup(void);
|
|
void Shutdown(void);
|
|
|
|
int WasRequested(void);
|
|
void Execute(lpp::RestartBehaviour behaviour, unsigned int exitCode);
|
|
}
|
|
|
|
|
|
#endif // LC_VERSION
|