Microsoft Visual C 中的 Lotus C API 示例表达
我已经下载了 Lotus C API Toolkit for Notes and Domino 8.5.2。在 Window7 64 位电脑上,我安装了工具包和 Microsoft Visiual C++ Express。
当我尝试运行示例 allflds.c 时,出现以下错误:
1>-------- 构建已开始:项目:test2,配置:调试 Win32 ------
1>allflds.obj:错误LNK2005:_main已在notes0.obj中定义
1>notesai0.obj:错误 LNK2019:函数 _NotesMain@8 中引用的无法解析的外部符号 _AddInMain@12
1>c:\users\zzz\documents\visual studio 2010\Projects\test2\Debug\test2.exe:致命错误 LNK1120:1 个无法解析的外部
========== 构建:0 成功,1 失败,0 最新,0 跳过 ==========
我以前从未使用过 Lotus C API ,正确方向的指针将不胜感激。
I have downloaded the Lotus C API Toolkit for Notes and Domino 8.5.2. On a Window7 64 bit pc I have installed the toolkit and Microsoft Visiual C++ Express.
When I try to run the example allflds.c I get these errors:
1>------ Build started: Project: test2, Configuration: Debug Win32 ------
1>allflds.obj : error LNK2005: _main already defined in notes0.obj
1>notesai0.obj : error LNK2019: unresolved external symbol _AddInMain@12 referenced in function _NotesMain@8
1>c:\users\zzz\documents\visual studio 2010\Projects\test2\Debug\test2.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I have never worked with the Lotus C API before, pointers in the right direction would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了。我按照本文档中提到的设置DominoDefrag。重命名
为就
成功了。
I figured it out. I followed the settings mentioned in this document DominoDefrag. Renaming
to
did the trick.