mirror of
https://github.com/eclipse-openvehicle-api/openvehicle-api.git
synced 2026-02-05 15:18:45 +00:00
18 lines
190 B
Plaintext
18 lines
190 B
Plaintext
#include <interfaces/core.idl>
|
|
|
|
/**
|
|
* @brief Example interface
|
|
*/
|
|
interface ITestLock
|
|
{
|
|
/**
|
|
* @brief Lock Mutex
|
|
*/
|
|
void Lock();
|
|
|
|
/**
|
|
* @brief Unlock Mutex
|
|
*/
|
|
void Unlock();
|
|
};
|