Answer the question
In order to leave comments, you need to log in
How to get a structure string from a pointer to it?
Hello I
ran into this problem:
There is a POBJECT_ATTRIBUTES type structure that contains a PUNICODE_STRING member.
I'm trying to do it in the following ways:
(LPCWSTR)*(ObjectAttributes->ObjectName);
///
ObjectAttributes->(LPCWSTR)*ObjectName;
///
LPVOID __temp = ObjectAttributes->ObjectName;
LPCWSTR __wstr = (LPCWSTR)__temp;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question