Hey everyone, I'm having this problem with the aforementioned API.
Here is the code to initialize the common controls i want to use..(commctrl.h is already included in my program)
INITCOMMONCONTROLSEX icex;
icex.dwSize=sizeof(INITCOMMONCONTROLSEX);
icex.dwICC=ICC_BAR_CLASSES;
InitCommonControlsEx(&icex);
However, when I try to build , it gives me this error:
1>tkud.obj : error LNK2019: unresolved external symbol __imp__InitCommonControls@0 referenced in function _WinMain@16
1>C:\Users\kudayisi\Documents\Visual Studio 2008\Projects\comctrl\Debug\comctrl.exe : fatal error LNK1120: 1 unresolved externals
I'm using Visual C++ 2008 Express Edition.
Any positive help on this matter would be highly appreciated.