{ int size_of_frame, size_of_locals, size_of_rot; unsigned __int64 cfs; cfs = __getCFS(); printf_s("Current Frame State: 0x%x\n", cfs); size_of_frame = cfs & SIZE_OF_FRAME_MASK; size_of_locals = (cfs & SIZE_OF_LOCALS_MASK) >> 7; size_of_rot = (cfs & SIZE_OF_...