Windows CE 6 上的 NTLMSetUserInfo
我想用 C++ 创建自己的针对 WinCE6 的用户配置实用程序。所有 NTLM 函数(例如这个)都需要 我找不到 ntlmssp.lib
。我已经搜索了 Platform Builder 目录,但只能找到 dll 文件而不是 lib。
任何人都可以阐明我如何实际访问这些函数或找到 lib 文件吗?
I want to create my own user configuration utility targetted for WinCE6 in C++. All the NTLM functions (such as this one) require ntlmssp.lib
which I cannot find. I have searched my Platform Builder directories but can only find the dll file not the lib.
Can anyone shed some light on how I actually access these functions, or find the lib file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您构建平台以仅包含您在设计中选择的入口点时,可能会生成该库(DEF 位于 public\common\oak\lib 中)。例如,我确实在我的发布目录中看到了一些设计的 ntlmssp.lib。
正确的方法是根据您的操作系统设计滚动并安装 SDK,然后将其安装在开发计算机上的正确位置(或者将您的实用程序作为操作系统设计的子项目,然后将其安装在开发计算机上的正确位置)在发布文件夹中查找 LIB)。
The lib is probably generated (the DEF is in public\common\oak\lib) when you build your platform to only include the entry points you've selected in your design. For example, I do see ntlmssp.lib in my release directory for a couple designs.
The proper way to do this is to roll and install an SDK based on your OS Design, then you'll get that installed in the right place on your dev machine (or make your utility as a subproject of your OS Design, which will then look in the release folder for the LIB).