使用 C++ 编写 Windows Media Center 插件
我一直在寻找一种用 C++ 创建 Windows 媒体中心插件的方法,有谁知道这是否可能(使用当前可用的工具)?我有 C# 的 SDK,但如果可能的话,我真的宁愿坚持使用 C++。
感谢您的帮助!
I have been searching for a way to create a windows media center plugin with C++, does anyone know if this is possible (with current available tools)? I have the SDK for C#, but would really rather stick to C++ if it all possible.
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以使用 C++/CLI,无论是用于整个事情还是只是在 Media Center 和非托管 C++ 之间创建一个薄垫片。
C++/CLI 很少使用,但它非常适合在托管和非托管世界之间建立桥梁。它比旧的托管 C++ 好得多,如果您对此犹豫不决的话。
You could always use C++/CLI, either for the whole thing or just to create a thin shim between Media Center and your unmanaged C++.
C++/CLI is rarely used but it is fantastic for creating a bridge between the managed and unmanaged worlds. It's much better than the old Managed C++, if the thought of that has put you off checking it out.