Что такое lpvoid в c
Covert String to LPVOID and LPCWSTR in C++
I’m working with the winHTTP API in c++ and I have started to write a wrapper class for my application. For simplicity I have a number of functions that can take string parameters and use them in the winHTTP calls. However many of these require the data to be LPVOID or LPCWSTR. I can make it all work by making my wrapper functions take LPVOID or LPCWSTR parameters, but I would prefer string parameters. So is there any way to covert from sting to LPVOID/ LPCWSTR?
My attempts (below) just produced jibberish
Any help would be much appreciated
4 Answers 4
Be careful for behavior of c_str(). The char* it returns is temporary, it will become invalid after the string is modified or destructed. Which may well happen before the _postData is used, possibly as soon as setPostData() returns. You’ll need to copy it.
The next problem is that c_str() doesn’t return a LPCWSTR, it is a LPCSTR. A cast cannot convert it, that produces Chinese. You’ll need to convert it to a Unicode string with for example MultiByteToWideChar().
You can pass a LPWSTR to methods which expect a LPCWSTR. So you can work with strings.
btw, did you just try passing the string itself? I would expect that to work too and is better than getting a LPWSTR out.
So, in that case it would look like:
Of course there is a way to convert your string to something, You can take an address of and pass it as LPCWSTR or as LPVOID (it may be a different thing in case of LPVOID).
Now read the above statement carefully.
To know what to do, first You have to know what LPCWSTR and LPVOID are. I have a strange gut feeling those might be some pointers. MSDN might help. Try here for example
Then You have to know what the function, You pass those parameters to, is going to do with the memory those pointers point to. Is it going to just read it or maybe modify it? And how is it going to interpret it in case of LPVOID.
I can’t help You with LPVOID because I don’t know the API, but LPCWSTR suggests You have to create a null terminated wide string that will be just read. How about creating a wstring and using it’s c_str() method?
LPVOID is just void*, so you can convert any pointer to it as any pointer is convertible to void*. However, it does not guarantee that this operation will give valid result in terms of your expectations.
Simply, LPVOID is used in situations according to the following scheme
The problem is that you have to guarantee that i will stay alive for at least as long as the data is accessed/used through pv pointer. You have to consider if your w
So, you can do this:
but you have to guarantee that the string object you pass by reference as postData will stay alive for at least as long as _postData points to it. In fact, _postData points to internal location of returned by c_str()
In other words, the conversion from one pointer to another is not a problem itself. The problem is to guarantee proper objects lifetime and usage.
LPVOID не распознается в C++/CLI
Я пытаюсь использовать следующий код для преобразования собственной строки в управляемую строку в C++\CLI:
Первоначально я нашел код здесь :
Но когда я пытаюсь построить его, он выдает ошибку:
Есть идеи, как это исправить?
3 ответа
typedef void far *LPVOID LPVOID is the name and it’s defined as a far pointer to void. Как объявить этот dataype в Objective C. void far* my_pointer; дает мне ошибку.
У меня есть нативная функция внутри управляемой (c++/cli) библиотеки смешанного режима, которая вызывает отдельный нативный dll. Вот собственная функция, которая инициализирует некоторые указатели функций с помощью windows GetProcAdress: //in header static HMODULE hDll; static void.
LPVOID-это просто псевдоним для void *. LP означает «long pointer,», что является старомодным способом сказать «указатель машинного размера», либо 32, либо 64 bit в зависимости от процесса.
Просто используйте static_cast
В одном или нескольких заголовочных файлах где-то есть #define LPVOID (void *)
Вы не включили такой файл.
Приведение к (тем же cv-квалификаторам ) void* всегда неявно возможно, вы никогда не должны видеть, как приведение пытается это сделать. Ошибка связана с попыткой удалить const с помощью static_cast
Попробуйте это, которое также правильно обрабатывает встроенные символы NUL:
Похожие вопросы:
Я работаю с winHTTP API в c++ и начал писать класс-оболочку для своего приложения. Для простоты у меня есть ряд функций, которые могут принимать строковые параметры и использовать их в вызовах.
Я получаю следующую ошибку при попытке преобразовать код из C в C++: ошибка C2440: ‘initializing’ : не удается преобразовать из ‘LPVOID’ в ‘UINT (__cdecl *) (LPVOID, UINT,LPWSTR, UINT)’ Вот фрагмент.
Недавно я задал этот вопрос: создать пространство имен в c++/cli? и поэтому я пытаюсь создать свое собственное пространство имен в c++/cli. Но когда я использую одно и то же пространство имен в двух.
typedef void far *LPVOID LPVOID is the name and it’s defined as a far pointer to void. Как объявить этот dataype в Objective C. void far* my_pointer; дает мне ошибку.
У меня есть нативная функция внутри управляемой (c++/cli) библиотеки смешанного режима, которая вызывает отдельный нативный dll. Вот собственная функция, которая инициализирует некоторые указатели.
Мне нужно преобразовать std::string в LPVOID для создания PIMAGE_DOS_HEADER. Я уже протестировал некоторые кастинги, но мой PE-заголовок не подходит. std::ifstream file; file.open(C:/testDLL.enc);.
C:\Users\Vivek Гханчи>НГ ‘ng’ не распознается как внутренняя или внешняя команда, действующая программа или batch file. Я установил angular CLI, но он показывает мне, что ng не распознается, есть ли.
NodeJS версия: v10.0.0 npm версия: 5.6.0 После того, как я сделал ‘npm install-g @angular/cli’, он был успешно установлен Но когда я пытаюсь запустить команду ‘ng’: ‘ng’ не распознается как.
Windows Data Types
The data types supported by Windows are used to define function return values, function and message parameters, and structure members. They define the size and meaning of these elements. For more information about the underlying C/C++ data types, see Data Type Ranges.
The following table contains the following types: character, integer, Boolean, pointer, and handle. The character, integer, and Boolean types are common to most C compilers. Most of the pointer-type names begin with a prefix of P or LP. Handles refer to a resource that has been loaded into memory.
For more information about handling 64-bit integers, see Large Integers.
Data type | Description | |
---|---|---|
APIENTRY | The calling convention for system functions. This type is declared in WinDef.h as follows: #define APIENTRY WINAPI | |
ATOM | An atom. For more information, see About Atom Tables. This type is declared in WinDef.h as follows: typedef WORD ATOM; | |
BOOL | A Boolean variable (should be TRUE or FALSE). This type is declared in WinDef.h as follows: typedef int BOOL; | |
BOOLEAN | A Boolean variable (should be TRUE or FALSE). This type is declared in WinNT.h as follows: typedef BYTE BOOLEAN; | |
BYTE | A byte (8 bits). This type is declared in WinDef.h as follows: typedef unsigned char BYTE; | |
CALLBACK | The calling convention for callback functions. This type is declared in WinDef.h as follows: #define CALLBACK __stdcall CALLBACK, WINAPI, and APIENTRY are all used to define functions with the __stdcall calling convention. Most functions in the Windows API are declared using WINAPI. You may wish to use CALLBACK for the callback functions that you implement to help identify the function as a callback function. | |
CCHAR | An 8-bit Windows (ANSI) character. This type is declared in WinNT.h as follows: typedef char CCHAR; | |
CHAR | An 8-bit Windows (ANSI) character. For more information, see Character Sets Used By Fonts. This type is declared in WinNT.h as follows: typedef char CHAR; | |
COLORREF | The red, green, blue (RGB) color value (32 bits). See COLORREF for information on this type. This type is declared in WinDef.h as follows: typedef DWORD COLORREF; | |
CONST | A variable whose value is to remain constant during execution. This type is declared in WinDef.h as follows: #define CONST const | |
DWORD | A 32-bit unsigned integer. The range is 0 through 4294967295 decimal. This type is declared in IntSafe.h as follows: typedef unsigned long DWORD; | |
DWORDLONG | A 64-bit unsigned integer. The range is 0 through 18446744073709551615 decimal. This type is declared in IntSafe.h as follows: typedef unsigned __int64 DWORDLONG; | |
DWORD_PTR | An unsigned long type for pointer precision. Use when casting a pointer to a long type to perform pointer arithmetic. (Also commonly used for general 32-bit parameters that have been extended to 64 bits in 64-bit Windows.) This type is declared in BaseTsd.h as follows: typedef ULONG_PTR DWORD_PTR; | |
DWORD32 | A 32-bit unsigned integer. This type is declared in BaseTsd.h as follows: typedef unsigned int DWORD32; | |
DWORD64 | A 64-bit unsigned integer. This type is declared in BaseTsd.h as follows: typedef unsigned __int64 DWORD64; | |
FLOAT | A floating-point variable. This type is declared in WinDef.h as follows: typedef float FLOAT; | |
HACCEL | A handle to an accelerator table. This type is declared in WinDef.h as follows: typedef HANDLE HACCEL; | |
HALF_PTR | Half the size of a pointer. Use within a structure that contains a pointer and two small fields. This type is declared in BaseTsd.h as follows:
| |
HANDLE |