问题:PROC生成的文件,编译时出现sqlcxt无法解析的外部符号。
解决办法:
在 extern void sqlcxt (void **, unsigned int *,struct sqlexd *, const struct sqlcxp *);
前面增加extern "C"
即可.例如:
extern "C" extern void sqlcxt (void **, unsigned int *,
struct sqlexd *, const struct sqlcxp *);