Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
626 B

// mdalign.h - Machine Dependent Alignment functions
#define MDALIGNTYPE DWORD
// returns the delta
inline CB dcbAlign(CB cb)
{
return (-cb) & (sizeof(MDALIGNTYPE) - 1);
}
inline CB cbAlign(CB cb)
{
return ((cb + sizeof(MDALIGNTYPE) - 1)) & ~(sizeof(MDALIGNTYPE) - 1);
}
inline BOOL fAlign(int i)
{
return (BOOL) !(i & (sizeof(MDALIGNTYPE) - 1));
}
inline BOOL fAlign(void* pv)
{
return fAlign((int)pv);
}
inline USHORT cbInsertAlign(PB pb, USHORT len)
{
USHORT align = (4 - len) & 3;
USHORT alignT = align;
char cPad = (char)(LF_PAD0 + align);
while (align--) {
*pb++ = cPad--;
}
return alignT;
}