mirror of
https://github.com/reactos/reactos.git
synced 2025-02-20 15:35:04 +00:00
Silence compiler warnings (9/11).
svn path=/trunk/; revision=37831
This commit is contained in:
parent
7e3410d2b3
commit
b3597def85
8 changed files with 17 additions and 12 deletions
|
@ -680,7 +680,7 @@ CSR_API(CsrReadConsole)
|
|||
return Status;
|
||||
}
|
||||
|
||||
BOOLEAN __inline ConioGetIntersection(
|
||||
__inline BOOLEAN ConioGetIntersection(
|
||||
RECT *Intersection,
|
||||
RECT *Rect1,
|
||||
RECT *Rect2)
|
||||
|
@ -706,7 +706,7 @@ BOOLEAN __inline ConioGetIntersection(
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
BOOLEAN __inline ConioGetUnion(
|
||||
__inline BOOLEAN ConioGetUnion(
|
||||
RECT *Union,
|
||||
RECT *Rect1,
|
||||
RECT *Rect2)
|
||||
|
|
|
@ -293,7 +293,8 @@ static CSRSS_CONSOLE_VTBL TuiVtbl =
|
|||
TuiSetScreenInfo,
|
||||
TuiUpdateScreenInfo,
|
||||
TuiChangeTitle,
|
||||
TuiCleanupConsole
|
||||
TuiCleanupConsole,
|
||||
NULL // ChangeIcon
|
||||
};
|
||||
|
||||
NTSTATUS FASTCALL
|
||||
|
|
|
@ -454,7 +454,7 @@ IntEngGradientFillTriangle(
|
|||
}
|
||||
|
||||
|
||||
BOOL static
|
||||
static BOOL
|
||||
IntEngIsNULLTriangle(TRIVERTEX *pVertex, GRADIENT_TRIANGLE *gt)
|
||||
{
|
||||
if(COMPAREVERTEX(VERTEX(Vertex1), VERTEX(Vertex2)))
|
||||
|
|
|
@ -13,7 +13,7 @@ typedef struct _WNDPROC_INFO
|
|||
BOOL IsUnicode;
|
||||
} WNDPROC_INFO, *PWNDPROC_INFO;
|
||||
|
||||
static BOOL __inline
|
||||
static __inline BOOL
|
||||
IsCallProcHandle(IN WNDPROC lpWndProc)
|
||||
{
|
||||
/* FIXME - check for 64 bit architectures... */
|
||||
|
|
|
@ -129,7 +129,7 @@ IntRemoveWindowFromChain(PWINDOW_OBJECT window)
|
|||
/*==============================================================*/
|
||||
/* if format exists, returns a non zero value (pointing to format object) */
|
||||
PCLIPBOARDELEMENT FASTCALL
|
||||
intIsFormatAvailable(format)
|
||||
intIsFormatAvailable(UINT format)
|
||||
{
|
||||
PCLIPBOARDELEMENT ret = NULL;
|
||||
PCLIPBOARDELEMENT ce = ClipboardData;
|
||||
|
|
|
@ -294,7 +294,7 @@ MsqIsDblClk(LPMSG Msg, BOOL Remove)
|
|||
return Res;
|
||||
}
|
||||
|
||||
BOOL static APIENTRY
|
||||
static BOOL APIENTRY
|
||||
co_MsqTranslateMouseMessage(PUSER_MESSAGE_QUEUE MessageQueue, HWND hWnd, UINT FilterLow, UINT FilterHigh,
|
||||
PUSER_MESSAGE Message, BOOL Remove, PBOOL Freed,
|
||||
PWINDOW_OBJECT ScopeWin, PPOINT ScreenPoint, BOOL FromGlobalQueue, PLIST_ENTRY *Next)
|
||||
|
|
|
@ -241,7 +241,7 @@ co_WinPosArrangeIconicWindows(PWINDOW_OBJECT parent)
|
|||
}
|
||||
|
||||
|
||||
VOID static FASTCALL
|
||||
static VOID FASTCALL
|
||||
WinPosFindIconPos(PWINDOW_OBJECT Window, POINT *Pos)
|
||||
{
|
||||
/* FIXME */
|
||||
|
|
|
@ -28,7 +28,8 @@ C_ASSERT(sizeof(FIX) == sizeof(LONG));
|
|||
/*
|
||||
* Inline helper to calculate pfo1 * pfo2 + pfo3 * pfo4
|
||||
*/
|
||||
VOID FORCEINLINE
|
||||
FORCEINLINE
|
||||
VOID
|
||||
MulAdd(
|
||||
PFLOATOBJ pfoDest,
|
||||
PFLOATOBJ pfo1,
|
||||
|
@ -48,7 +49,8 @@ MulAdd(
|
|||
/*
|
||||
* Inline helper to calculate pfo1 * l2 + pfo3 * l4
|
||||
*/
|
||||
VOID FORCEINLINE
|
||||
FORCEINLINE
|
||||
VOID
|
||||
MulAddLong(
|
||||
PFLOATOBJ pfoDest,
|
||||
PFLOATOBJ pfo1,
|
||||
|
@ -68,7 +70,8 @@ MulAddLong(
|
|||
/*
|
||||
* Inline helper to calculate pfo1 * pfo2 - pfo3 * pfo4
|
||||
*/
|
||||
VOID FORCEINLINE
|
||||
FORCEINLINE
|
||||
VOID
|
||||
MulSub(
|
||||
PFLOATOBJ pfoDest,
|
||||
PFLOATOBJ pfo1,
|
||||
|
@ -88,7 +91,8 @@ MulSub(
|
|||
/*
|
||||
* Inline helper to get the complexity hint from flAccel
|
||||
*/
|
||||
ULONG FORCEINLINE
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
HintFromAccel(ULONG flAccel)
|
||||
{
|
||||
switch (flAccel & (MX_NOTRANSLATE | MX_IDENTITYSCALE | MX_SCALE))
|
||||
|
|
Loading…
Reference in a new issue