Undefined Symbol Error![HELP]
#1

Код:
error 017: undefined symbol "ERP_DialogBase"
Here's the line
Код:
enum {
	ERP_BankChoose = ERP_DialogBase +1,
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)