mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-28 09:47:43 +00:00
10 lines
282 B
C#
10 lines
282 B
C#
namespace QuanTAlib.Python;
|
|
|
|
internal static class StatusCodes
|
|
{
|
|
public const int QTL_OK = 0;
|
|
public const int QTL_ERR_NULL_PTR = 1;
|
|
public const int QTL_ERR_INVALID_LENGTH = 2;
|
|
public const int QTL_ERR_INVALID_PARAM = 3;
|
|
public const int QTL_ERR_INTERNAL = 4;
|
|
} |