请高手翻译如下.h文件,感激,感激!(100分)

  • 主题发起人 主题发起人 jyy758
  • 开始时间 开始时间
J

jyy758

Unregistered / Unconfirmed
GUEST, unregistred user!
#if !defined(__FC_NWP_H__)
#define __FC_NWP_H__ 1
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef struct _NWP_In { /* input data declarations */
float f_____;
/* ???? (1 transforms) */
float f_U001;
/* ???? (1 transforms) */
float f_U002;
/* ???? (1 transforms) */
float f_IN_4;
/* IN_4 (1 transforms) */
float f_IN_5;
/* IN_5 (1 transforms) */
float f_IN_6;
/* IN_6 (1 transforms) */
} NWP_In;
typedef struct _NWP_Out { /* output data declarations */
float f_OUT_1;
/* OUT_1 (1 transforms) */
} NWP_Out;
/* See the comments above each individual routine in the
C file for descriptions of the arguments */
#if defined(__STDC__) || defined(PROTOTYPE)
extern int nNWP(
NWP_In *, /* input structure */
NWP_Out *, /* output structure */
float *);
/* network outputs */
extern int nNWPDimGet(
int);
/* Which dimension to get */
#else
extern int nNWP();
extern int nNWPDimGet();
#endif
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
 
有个C语言头文件转换为Delphi的工具叫headconv,你给我你的邮件地址,我发给你。
 
jyy758@sina.com
 
http://www.csdn.net/dev/Delphi/tools/other/
headconv在上面有下载的
 
翻译后函数定义不一样,等待
 
C里面的条件编译,可以查看谭浩强的书,有关条件编译的。
另外里面还有就是有一个自定义类型。
 
哪一些定义不一样??
 
后退
顶部