midiInGetDevCaps Midi 设备名称

发布于 2024-08-31 15:44:38 字数 275 浏览 10 评论 0原文

我使用了此链接中的以下代码。

在 C# 中从 MIDI 端口获取信号

我想知道需要添加什么才能获取设备名称列表。 我查看了 MSDN 网站,发现我需要实现 midiInGetDevCaps 及其关联的结构。但我之前从未真正对 dll 导入和结构做过任何事情,所以我有点迷失。

I've used the following code from this link.

Getting signals from a MIDI port in C#

I'm wondering what I need to add to able to get a list of device names.
I've looked the MSDN website and found I need to implement midiInGetDevCaps and its a associated struct. But I've never really done anything with dll imports and structs before so I'm a bit lost.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只涨不跌 2024-09-07 15:44:38

也许你需要像这样使用它:

MIDIINCAPS caps2;

for (uint i = 0; i < Device.iNumDevs1; i++)
{
    Device.midiOutGetDevCaps(i, out caps2, Marshal.SizeOf(output));
    comboBox2.Items.Add(caps2.szPname);
}

Maybe you need use it like this:

MIDIINCAPS caps2;

for (uint i = 0; i < Device.iNumDevs1; i++)
{
    Device.midiOutGetDevCaps(i, out caps2, Marshal.SizeOf(output));
    comboBox2.Items.Add(caps2.szPname);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文