Symbian源代码还原之五——判断函数

int CCoeControl::OwnsWindow(void) const { return iFlags & 4; } int CCoeControl::IsBackedUp(void) const { return iFlags & 0x100; } int  CCoeControl::IsActivated(void) const { return iFlags & 0x10; } int CCoeControl::IsBlank(void) const { return iFlags & 0x1000; } int CCoeControl::IsBeingDestroyed(void) const { return iFlags & 0x40000; }

你可能感兴趣的:(Symbian源代码还原之五——判断函数)