| 55 | } |
| 56 | |
| 57 | void xParGroupSetBack2Life(xParGroup* ps, S32 b2l) |
| 58 | { |
| 59 | if (b2l) |
| 60 | { |
| 61 | if (ps->m_flags & XPARGROUP_NOBACK2LIFE) |
| 62 | { |
| 63 | ps->m_flags ^= XPARGROUP_NOBACK2LIFE; |
| 64 | } |
| 65 | } |
| 66 | else |
| 67 | { |
| 68 | ps->m_flags |= XPARGROUP_NOBACK2LIFE; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | void xParGroupSetVisibility(xParGroup* ps, S32 vis) |
| 73 | { |
no outgoing calls
no test coverage detected