| 92 | } |
| 93 | |
| 94 | EVENT CEventAPI::Handler_Attach(const char* N, IEventReceiver* H) |
| 95 | { |
| 96 | CS.Enter(); |
| 97 | EVENT E = Create(N); |
| 98 | E->Attach(H); |
| 99 | CS.Leave(); |
| 100 | return E; |
| 101 | } |
| 102 | |
| 103 | void CEventAPI::Handler_Detach(EVENT& E, IEventReceiver* H) |
| 104 | { |
no test coverage detected