Guest User

Untitled

a guest
Jul 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. void PrintLastError()
  2. {
  3.     LPWSTR lpMsgBuf;
  4.     DWORD dw = GetLastError();
  5.  
  6.     FormatMessageW(
  7.         FORMAT_MESSAGE_ALLOCATE_BUFFER |
  8.         FORMAT_MESSAGE_FROM_SYSTEM |
  9.         FORMAT_MESSAGE_IGNORE_INSERTS,
  10.         NULL,
  11.         dw,
  12.         MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
  13.         (LPWSTR)&lpMsgBuf,
  14.         0, NULL );
  15.  
  16.     printf("%S", lpMsgBuf);
  17.  
  18.     LocalFree(lpMsgBuf);
  19. }
Add Comment
Please, Sign In to add comment