在 Visual Studio 中播放 .wav 文件时出错
我尝试在 VS2008 中播放 .wav 文件,使用以下命令:
#include <windows.h>
#include <mmsystem.h>
PlaySound((LPCWSTR)"snd1.wav", NULL, SND_ASYNC);
但我听到的只是 Windows 的“嘟嘟”声!
我无法弄清楚是什么导致了这个问题。在这个方向上的任何帮助都会很好!
谢谢!
I tried playing .wav files in VS2008 ,using the following command:
#include <windows.h>
#include <mmsystem.h>
PlaySound((LPCWSTR)"snd1.wav", NULL, SND_ASYNC);
But all I hear is the Windows 'Beep' Sound !
I couldn't figure out whats causing this problem. Any help in this direction would be nice!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能只是将窄字符串转换为宽字符指针并期望它能够工作。传递实际的宽字符串。
You can't just cast a narrow character string to a wide character pointer and expect it to work. Pass an actual wide character string.
您需要告诉操作系统您要播放文件。
You need to tell the OS that you want to play file.