blob: e33dbd560a96e1c49f03e18b964a8f897185e874 [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001
2#ifndef PJSUA_PAN_H
3#define PJSUA_PAN_H
4
5/** pjsua application panic codes */
6enum TpjsuaPanics
7 {
8 EpjsuaUi = 1
9 // add further panics here
10 };
11
12inline void Panic(TpjsuaPanics aReason)
13 {
14 _LIT(applicationName,"pjsua");
15 User::Panic(applicationName, aReason);
16 }
17
18#endif // PJSUA_PAN_H