mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
14 lines
154 B
C++
14 lines
154 B
C++
#pragma once
|
|
|
|
#define EXPORT extern "C" _declspec(dllexport)
|
|
|
|
namespace Results {
|
|
|
|
enum CallResult
|
|
{
|
|
Ok = 0,
|
|
InvalidHandle = 1
|
|
};
|
|
|
|
}
|