Undefined Symbol Error![HELP]
#2

I guess there is no such variable (or whatever) named ERP_DialogBase. Also, it is possible that ERP_DialogBase is defined AFTER your enum. For example:
Код:
enum {
ERP_BankChoose = ERP_DialogBase +1
}

#define ERP_DialogBase 0
To get rid of this error, you should move your enum below the ERP_DialogBase:
Код:
#define ERP_DialogBase 0

enum {
ERP_BankChoose = ERP_DialogBase +1
}
Reply


Messages In This Thread
Undefined Symbol Error![HELP] - by Ahmeeed - 06.06.2015, 11:01
Re: Undefined Symbol Error![HELP] - by valych - 06.06.2015, 12:43

Forum Jump:


Users browsing this thread: 2 Guest(s)