NT4/private/windows/spooler/spllib/common.inl
2020-09-30 17:12:29 +02:00

40 lines
352 B
C++

/*++
Copyright (c) 1994 Microsoft Corporation
All rights reserved.
Module Name:
common.inl
Abstract:
Defines common inlines
Author:
Albert Ting (AlbertT) 21-May-1994
Revision History:
--*/
inline
DWORD
DWordAlign(
DWORD dw
)
{
return ((dw)+3)&~3;
}
inline
DWORD
Align(
DWORD dw
)
{
return (dw+7)&~7;
}