Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. if (access(PathToLibrary, 0))
  2. {
  3. puts("Couldn't find library at the specified path"); //1 Line
  4. }
  5.  
  6. HINSTANCE handle = LoadLibrary(PathToLibrary); //2 Line
  7. DWORD ErrorCode = GetLastError(); //3 Line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement