Mercurial > ecos
view packages/services/gfx/mw/current/include/microwin/wintools.h @ 3292:7f8e529b4d82 default tip
Fix FREESCALE_EDMA_NBYTES_MLOFFYES_MLOFF() so it works with negative offsets.
| author | vae |
|---|---|
| date | Wed, 29 Apr 2015 23:31:48 +0000 |
| parents | e0c0827131d1 |
| children |
line wrap: on
line source
/* * wintools.h - MS Windows tools library header * * WINGEN General Purpose Library * WINMEM Windows Memory Mgmt Library * WINFX Special Effects Library * WINDRAW Draw Library * WINCTL Custom Control Library * WIN Class Procedures: ToolsTips, AutoMove, AutoEdit * WINVID Windows Digital Video * * original version 1/6/95 by g haerr */ void WINAPI Draw3dShadow(HDC hDC,int x,int y,int w,int h,COLORREF crTop, COLORREF crBottom); void WINAPI Draw3dBox(HDC hDC,int x,int y,int w,int h,COLORREF crTop, COLORREF crBottom); void WINAPI Draw3dInset(HDC hDC,int x,int y,int w,int h); void WINAPI Draw3dOutset(HDC hDC,int x,int y,int w,int h); void WINAPI Draw3dPushDown(HDC hDC, int x, int y, int w, int h); void WINAPI Draw3dUpDownState(HDC hDC, int x, int y, int w, int h, BOOL fDown); void WINAPI Draw3dUpFrame(HDC hDC, int l, int t, int r, int b); void WINAPI FastFillRect(HDC hdc,LPRECT lprect,COLORREF cr); void WINAPI InsetR(LPRECT lprc,int h,int v); BOOL WINAPI PtInsideWindow(HWND hwnd,UINT x,UINT y);
