Advertisement
pavedaf

Untitled

Jul 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. char pName[220];
  2.  
  3. IsPlrLocal1->GetName(PName);
  4.  
  5. if (PName != NULL && PName != "" && strlen(PName) > 0)
  6. {
  7. wchar_t outputname[1024];
  8.  
  9. if (MultiByteToWideChar(CP_UTF8, 0, PName, -1, outputname, strlen(PName) + 1) > 0)
  10. {
  11. //DrawWideString(screen.x, screen.y + 20.0f, Red, DT_CENTER, pESP, outputname);
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement