c – 在参数传递中无法将’const char *’转换为’WCHAR *’

我有文件,其中写的用户名,IP和密码必须是const char *,当我在const char中放置变量时,我收到此错误消息.

这是我的代码

#include <cstdlib>
#include <iostream>
#include <stdio.h>
#include <windows.h>

using namespace std;

typedef int (__cdecl *MYPROC)(LPWSTR);

int main()
{
    HINSTANCE hinstDLL;
    MYPROC ProcAdd;   
    hinstDLL = LoadLibrary("LmServerAPI.dll");
    if(hinstDLL != NULL){
        ProcAdd = (MYPROC) GetProcAddress(hinstDLL,"LmServer_Login");            
        if(ProcAdd != NULL){
            const char* IP = "xxx.177.xxx.23";
            const char* name = "username";
            const char* pass = "password";
            int port = 888;
            ProcAdd(IP,port,name,pass);
            system ("pause");          
        }          
    }
}

我收到了这个错误

cannot convert const char*' toWCHAR*’ in argument passing

我必须使用哪种变量用于这些参数以及如何使用?

解决方法

您最有可能使用Visual Studio编译器之一,在“项目设置”中,有一个字符集选项.从中选择:

> Unicode字符集(UTF-16),默认
>多字节字符集(UTF-8)
>未设置

调用接受Unicode设置中的字符串的函数需要您创建Unicode字符串文字

"hello"

是const char *类型,而:

L"hello"

是const wchar_t *类型.因此,要么将配置更改为“未设置”,要么将字符串文字更改为宽文字.

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录&lt;future&gt;future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...