求助:关于OO4O传递输入数组
答案:1 悬赏:50 手机版
解决时间 2021-02-12 22:40
- 提问者网友:椧運幽默
- 2021-02-12 05:22
求助:关于OO4O传递输入数组
最佳答案
- 五星知识达人网友:爱难随人意
- 2021-02-12 06:10
char strResult[128];
char strText[1024];
int v[100];
strcpy(strText,"1 2 3 4 5");
typedef int (WINAPI ICEPUB_GETFORMATSTRING)( char *sourceStr,int index,char *strFenge,char *strSubResult);
ICEPUB_GETFORMATSTRING *icePub_getFormatString = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_getFormatString = (ICEPUB_GETFORMATSTRING *)GetProcAddress(hDLLDrv, "icePub_getFormatString");
}
if(icePub_getFormatString)
{
for(int i=0;i<5;i++)
{
retCode = icePub_getFormatString(strText,i," ",strResult);
v[i+1]=atoi(strResult);
}
}
if(hDLLDrv)
FreeLibrary(hDLLDrv);
char strText[1024];
int v[100];
strcpy(strText,"1 2 3 4 5");
typedef int (WINAPI ICEPUB_GETFORMATSTRING)( char *sourceStr,int index,char *strFenge,char *strSubResult);
ICEPUB_GETFORMATSTRING *icePub_getFormatString = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_getFormatString = (ICEPUB_GETFORMATSTRING *)GetProcAddress(hDLLDrv, "icePub_getFormatString");
}
if(icePub_getFormatString)
{
for(int i=0;i<5;i++)
{
retCode = icePub_getFormatString(strText,i," ",strResult);
v[i+1]=atoi(strResult);
}
}
if(hDLLDrv)
FreeLibrary(hDLLDrv);
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯