test.c

来自「公关系统服务器后台程序」· C语言 代码 · 共 29 行

C
29
字号
#include <stdio.h>#include "datapoolgui.h"#include "jmpool.h"int main(){	dataHeadInfo head;	singerDef singer;	int i;	dataInit();	if(dataGetHeadInfo(&head,1)!=dataSuccess)		printf("llllllllllll");	printf("%d,%d,%d,%d,%d,%d\n",head.pageCur,head.pageCount,		head.dataType,head.dataTypeSize,head.dataCount,		head.dataVolume);		for(i=0;i<head.dataCount;i++)	{		dataQueryNode(&singer,i,1);		printf("id:%d\n",singer.ID);		printf("name:%s\n",singer.name);		printf("filePath:%s\n",singer.filePath);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?