Use LoadLibrary instead of LoadLibraryA.
LoadLibrary can either point to LoadLibraryA or LoadLibraryW depending on the system and build options, so let's use LoadLibrary everywhere for consistency. Also, wrap static argument strings with _T() so that they're automatically in the right format.
Showing
Please register or sign in to comment