| 425 | |
| 426 | template<bool... Ts> |
| 427 | PEVENT_RECORD_CALLBACK GetEventRecordCallback(bool t1) |
| 428 | { |
| 429 | return t1 ? &EventRecordCallback<Ts..., true> |
| 430 | : &EventRecordCallback<Ts..., false>; |
| 431 | } |
| 432 | |
| 433 | template<bool... Ts> |
| 434 | PEVENT_RECORD_CALLBACK GetEventRecordCallback(bool t1, bool t2) |