Hi, I want to be able to change the appearence of all the shell controls
during runtime, so if i make a new function like reinitiate_cache() in
gcacheviewxp.cpp:
void reinitiate_cache(){
HBITMAP hbmScrollThumb;
hbmScrollThumb = SHLoadDIBitmap (L"scroll_thumb.bmp");
Gdi::SelectObject_I(g_cacheview.hdcScrollThumb, (HGDIOBJ)hbmScrollThumb);
}
and then call that function from for example the control panel, what is the
best way to make the function global so I can call it from the control panel
application?
Should I make a dll so I can call the function through a dll function call
or is there any simplier way to achieve this?
Regards, Dani