用于安装/卸载的 Win CE 5 存储管理器函数的 C# 包装器
我正在寻找一种从我的紧凑框架应用程序在 win CE 5 上安装/卸载分区的方法。
我没有安装 C++,所以无法自己编写包装器。
某处有可用的吗?
I'm looking for a way to mount/dismount partitions on win CE 5, from my compact framework app.
I don't have C++ installed, so cannot write the wrapper myself.
Is there one available somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于某种(糟糕的)原因,存储管理器 API 实际上并未从 coredll 公开导出。对它们的唯一访问是创建一个 C 库并将其与 storemgr.lib 链接。我全心全意地同意这是一种真正的痛苦,但事实就是如此,而且我不知道有任何公开可用的包装器(如果我有一个,我肯定会发布它,但我没有)。
The Storage Manager APIs, for whatever (poor) reasons are not actually publicly exported from coredll. The only access to them is to create a C library and link it with storemgr.lib. I wholeheartedly agree that this is a real pain, but that's the way it is, and I'm not aware of any publicly available wrapper for them (if I had one I'd definitely release it, but I don't).