blob: e33dbd560a96e1c49f03e18b964a8f897185e874 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001
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