[Add] Added vnoes.pyd

This commit is contained in:
nanoric 2019-03-04 02:42:42 -04:00
parent be6f292aca
commit 2e0466be40
8 changed files with 6399 additions and 3 deletions

BIN
vnpy/api/oes/liboes_api.a Normal file

Binary file not shown.

BIN
vnpy/api/oes/oes_api.dll Normal file

Binary file not shown.

BIN
vnpy/api/oes/oes_api.lib Normal file

Binary file not shown.

BIN
vnpy/api/oes/vnoes.pyd Normal file

Binary file not shown.

6396
vnpy/api/oes/vnoes.pyi Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
from vnoes import OesApi_GetErrorMsg, OesApi_GetLastError
from vnpy.api.oes.vnoes import OesApi_GetErrorMsg, OesApi_GetLastError
def error_to_str(code: int):

View File

@ -3,7 +3,7 @@ from threading import Thread
# noinspection PyUnresolvedReferences
from typing import Any, Callable, Dict
from vnoes import MdsApiClientEnvT, MdsApi_DestoryAll, MdsApi_InitAllByConvention, \
from vnpy.api.oes.vnoes import MdsApiClientEnvT, MdsApi_DestoryAll, MdsApi_InitAllByConvention, \
MdsApi_IsValidQryChannel, MdsApi_IsValidTcpChannel, MdsApi_LogoutAll, \
MdsApi_SubscribeMarketData, MdsApi_WaitOnMsg, MdsL2StockSnapshotBodyT, MdsMktDataRequestEntryT, \
MdsMktDataRequestReqT, MdsMktRspMsgBodyT, MdsStockSnapshotBodyT, SGeneralClientChannelT, \

View File

@ -4,7 +4,7 @@ from threading import Thread
# noinspection PyUnresolvedReferences
from typing import Any, Callable, Dict, Tuple
from vnoes import OesApiClientEnvT, OesApi_DestoryAll, OesApi_InitAllByConvention, \
from vnpy.api.oes.vnoes import OesApiClientEnvT, OesApi_DestoryAll, OesApi_InitAllByConvention, \
OesApi_IsValidOrdChannel, OesApi_IsValidQryChannel, OesApi_IsValidRptChannel, OesApi_LogoutAll, \
OesApi_QueryCashAsset, OesApi_QueryEtf, OesApi_QueryIssue, OesApi_QueryOptHolding, \
OesApi_QueryOption, OesApi_QueryOrder, OesApi_QueryStkHolding, OesApi_QueryStock, \