I'm just starting Win32 API programming and my freakin' compiler keeps saying that comctl32.lib doesn't exist! I'm using Dev C++ 5. Please help!
This is a discussion on comctl32.lib within the Windows Programming forums, part of the Platform Specific Boards category; I'm just starting Win32 API programming and my freakin' compiler keeps saying that comctl32.lib doesn't exist! I'm using Dev C++ ...
I'm just starting Win32 API programming and my freakin' compiler keeps saying that comctl32.lib doesn't exist! I'm using Dev C++ 5. Please help!
And your compiler is absolutely right. Open up the libs directory of your installation to see how mingw libs are named.Originally posted by gcn_zelda
I'm just starting Win32 API programming and my freakin' compiler keeps saying that comctl32.lib doesn't exist! I'm using Dev C++ 5. Please help!
You can avoid using the full name of a lib with -lname_of_lib_without_lib_prefix_and_extension. For example,
libcomctl32.a: -lcomctl32.
thanks.