DPS/include/CommonDataPublic.h

31 lines
391 B
C
Raw Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include <string>
#include <iostream>
#include <list>
using namespace std;
namespace DBPlatformSpace
{
#define ODI __declspec(dllexport) //<2F>ⲿ<EFBFBD><E2B2BF><EFBFBD>ݽӿ<DDBD> Open Data Interface
#define FALSE 0
#define TRUE 1
///<2F>ӿ<EFBFBD>ִ<EFBFBD><D6B4>״̬<D7B4><CCAC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ
struct ResultMsg
{
int rCode; ///<״̬<D7B4><CCAC>
string rMsg; ///<״̬<D7B4>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD>Ϣ
ResultMsg()
{
rCode = 0;
rMsg = "";
}
};
}