python wrapper

This commit is contained in:
Miha Kralj
2026-02-28 14:14:35 -08:00
parent 82e0248eb0
commit 83e9511261
521 changed files with 62395 additions and 15669 deletions
+10
View File
@@ -0,0 +1,10 @@
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;
}