mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
- Small bugfixes.
svn path=/trunk/; revision=6439
This commit is contained in:
parent
e9721e7a3e
commit
f2011619fc
|
@ -2644,6 +2644,7 @@ extern "C" {
|
||||||
#define SPI_GETSTICKYKEYS (58)
|
#define SPI_GETSTICKYKEYS (58)
|
||||||
#define SPI_GETTOGGLEKEYS (52)
|
#define SPI_GETTOGGLEKEYS (52)
|
||||||
#define SPI_GETWINDOWSEXTENSION (92)
|
#define SPI_GETWINDOWSEXTENSION (92)
|
||||||
|
#define SPI_GETWHEELSCROLLLINES (104)
|
||||||
#define SPI_GETWORKAREA (48)
|
#define SPI_GETWORKAREA (48)
|
||||||
#define SPI_ICONHORIZONTALSPACING (13)
|
#define SPI_ICONHORIZONTALSPACING (13)
|
||||||
#define SPI_ICONVERTICALSPACING (24)
|
#define SPI_ICONVERTICALSPACING (24)
|
||||||
|
|
|
@ -99,6 +99,7 @@ inline static const char *debugres_w( const WCHAR *s ) { return wine_dbgstr_wn(
|
||||||
#define DEFAULT_DEBUG_CHANNEL(ch) \
|
#define DEFAULT_DEBUG_CHANNEL(ch) \
|
||||||
char __wine_dbch_##ch[1]; static char * const __wine_dbch___default = __wine_dbch_##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 WINE_DEFAULT_DEBUG_CHANNEL(ch) DEFAULT_DEBUG_CHANNEL(ch)
|
||||||
|
|
||||||
#define DPRINTF wine_dbg_printf
|
#define DPRINTF wine_dbg_printf
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
#define strtolW(s,e,b) wcstol((const wchar_t *)s,(wchar_t **)e,b)
|
#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 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 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 tolowerW(n) towlower((wint_t)n)
|
||||||
#define atoiW(s) _wtoi((const wchar_t *)s)
|
#define atoiW(s) _wtoi((const wchar_t *)s)
|
||||||
#define atolW(s) _wtol((const wchar_t *)s)
|
#define atolW(s) _wtol((const wchar_t *)s)
|
||||||
|
|
|
@ -78,6 +78,7 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
OBM_CLOSE BITMAP "resources/obm_close.bmp"
|
OBM_CLOSE BITMAP "resources/obm_close.bmp"
|
||||||
|
OBM_CHECKBOXES BITMAP "resources/obm_checkboxes.bmp"
|
||||||
DF_HATCH BITMAP "resources/df_hatch.bmp"
|
DF_HATCH BITMAP "resources/df_hatch.bmp"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -349,7 +349,7 @@ DefWndNCPaint(HWND hWnd, HRGN hRgn)
|
||||||
} else
|
} else
|
||||||
if (ExStyle & WS_EX_STATICEDGE)
|
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 */
|
/* Firstly the "thick" frame */
|
||||||
|
|
Loading…
Reference in a new issue