17 Jul
2006
17 Jul
'06
10:06 a.m.
"Andrew Ziem" <ahziem1(a)mailbolt.com> wrote:
-static HBITMAP hbitmapWallPaper; -static SIZE bitmapSize; -static BOOL fTileWallPaper; +HBITMAP hbitmapWallPaper; /* desktop wallpaper */ +SIZE bitmapSize; /* size of desktop wallpaper */ +BOOL fTileWallPaper;
If the varaibles are no more used in this file you should not make static variables public, but move them into appropriate file instead. -- Dmitry.