Microsoft Visual C 中的 Lotus C API 示例表达

发布于 2024-11-18 18:07:52 字数 544 浏览 2 评论 0原文

我已经下载了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘东忘西忘不掉你 2024-11-25 18:07:52

我想通了。我按照本文档中提到的设置DominoDefrag。重命名

int main(int argc, char *argv[])

为就

STATUS LNPUBLIC AddInMain(HMODULE hModule, int argc, char *argv[])

成功了。

I figured it out. I followed the settings mentioned in this document DominoDefrag. Renaming

int main(int argc, char *argv[])

to

STATUS LNPUBLIC AddInMain(HMODULE hModule, int argc, char *argv[])

did the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文