- Small bugfixes.

svn path=/trunk/; revision=6439
This commit is contained in:
Filip Navara 2003-10-26 18:08:51 +00:00
parent e9721e7a3e
commit f2011619fc
5 changed files with 5 additions and 1 deletions

View file

@ -2644,6 +2644,7 @@ extern "C" {
#define SPI_GETSTICKYKEYS (58)
#define SPI_GETTOGGLEKEYS (52)
#define SPI_GETWINDOWSEXTENSION (92)
#define SPI_GETWHEELSCROLLLINES (104)
#define SPI_GETWORKAREA (48)
#define SPI_ICONHORIZONTALSPACING (13)
#define SPI_ICONVERTICALSPACING (24)

View file

@ -99,6 +99,7 @@ inline static const char *debugres_w( const WCHAR *s ) { return wine_dbgstr_wn(
#define DEFAULT_DEBUG_CHANNEL(ch) \
char __wine_dbch_##ch[1]; static char * const __wine_dbch___default = __wine_dbch_##ch
#define WINE_DECLARE_DEBUG_CHANNEL(ch) DECLARE_DEBUG_CHANNEL(ch)
#define WINE_DEFAULT_DEBUG_CHANNEL(ch) DEFAULT_DEBUG_CHANNEL(ch)
#define DPRINTF wine_dbg_printf

View file

@ -8,6 +8,7 @@
#define strtolW(s,e,b) wcstol((const wchar_t *)s,(wchar_t **)e,b)
#define strchrW(s,c) wcschr((const wchar_t *)s,(wchar_t)c)
#define strncmpW(s1,s2,n) wcsncmp((const wchar_t *)s1,(const wchar_t *)s2,n)
#define strncpyW(s1,s2,n) wcsncpy((wchar_t *)s1,(const wchar_t *)s2,n)
#define tolowerW(n) towlower((wint_t)n)
#define atoiW(s) _wtoi((const wchar_t *)s)
#define atolW(s) _wtol((const wchar_t *)s)

View file

@ -78,6 +78,7 @@ END
//
OBM_CLOSE BITMAP "resources/obm_close.bmp"
OBM_CHECKBOXES BITMAP "resources/obm_checkboxes.bmp"
DF_HATCH BITMAP "resources/df_hatch.bmp"
/////////////////////////////////////////////////////////////////////////////

View file

@ -349,7 +349,7 @@ DefWndNCPaint(HWND hWnd, HRGN hRgn)
} else
if (ExStyle & WS_EX_STATICEDGE)
{
DrawEdge(hDC, &CurrentRect, BDR_SUNKENOUTER, BF_RECT | BF_ADJUST);
DrawEdge(hDC, &CurrentRect, BDR_SUNKENINNER, BF_RECT | BF_ADJUST);
}
/* Firstly the "thick" frame */