我正在尝试使用SetParametersInfo函数来更改壁纸。我想将壁纸的文件路径作为变量传递,但每当我尝试这样做时,我都会收到错误
Error: no suitable conversion function from "std::string" to "PVOID" exists
这是我到目前为止的代码
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <string>
#pragma comment(lib, "user32.lib")
using namespace std;
#define _TEXT(x) L##x
void main(){
string input ="";
cout << "Enter the filepath\n";
getline(cin, input);
BOOL success = SystemParametersInfo(
SPI_SETDESKWALLPAPER, //iuAction
0, //uiParam
input, //pvParam
SPIF_UPDATEINIFILE //fWinIni
);
if (success){
printf("Success!\n");
}else
printf("Failure =(\n");
}
你们对我能做什么有什么建议吗?我已经全神贯注地找到了解决方案而无法找到解决方案。也许我不是在寻找合适的条款。
额外信息:我正在运行Windows 7并使用Visual Studio 2010 Ultimate。
修改 我终于开始工作了。我不得不将“字符集”设置更改为“未设置”然后它工作正常。这是更新的代码:
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <string>
#pragma comment(lib, "user32.lib")
using namespace std;
void main(){
string input ="";
cout << "Enter the filepath\n";
getline(cin, input);
BOOL success = SystemParametersInfo(
SPI_SETDESKWALLPAPER, //iuAction
0, //uiParam
(PVOID) input.c_str(), //pvParam
SPIF_UPDATEINIFILE //fWinIni
);
if (success){
printf("Success!\n");
}else{
printf("Failure =(\n ");
cout << input << "\n";
cout << (PVOID) input.c_str()<< "\n";
}
}
答案 0 :(得分:1)
input.c_str()将返回一个const char *,它将隐式转换为PVOID。
将input.c_str()传递给SystemParametersInfo,它应该可以工作。
*确保不使用UNICODE = 1编译它,因为SystemParametersInfo被重定向到SystemParametersInfoW,它会期望std :: wstring,而不是std :: string。
如果你真的想在编译UNICODE时强制使用ascii字符串,那么请明确调用SystemParametersInfoA。
答案 1 :(得分:0)
BOOL success = SystemParametersInfo(
SPI_SETDESKWALLPAPER, //iuAction
0, //uiParam
(PVOID)input.c_str(), //pvParam
SPIF_UPDATEINIFILE //fWinIni
);
答案 2 :(得分:0)
string :: c_str()将返回一个const char *指针,然后您可能需要执行指针类型转换以使SystemParametersInfo工作。
BOOL success = SystemParametersInfo(
SPI_SETDESKWALLPAPER, //iuAction
0, //uiParam
(PVOID)input.c_str(), //pvParam
SPIF_UPDATEINIFILE //fWinIni
);