identifier TList not found

BlitzMax Forums/BlitzMax Programming/identifier TList not found

Captain Wicker (crazy hillbilly)(Posted 2012) [#1]
While working on porting DevilGUI to blitzmax I have found a problem. After compiling DevilGUI, I get 'Identifier TList not found' in bbtype.bmx. The error comes after building 0.05 of the module. Here is the code for DevilGUI port to BlitzMax 0.05.

Here is the entire project: Download DevilGUI.mod

Any help is greatly appreciated. :)

Last edited 2012


BladeRunner(Posted 2012) [#2]
If you build a module you have to import all other Modules that are used by it.
Btw: if you get the error in bbtype.bmx it would help if you upload this too ;) - the error may not be this obvious next time.

Last edited 2012


Captain Wicker (crazy hillbilly)(Posted 2012) [#3]
Sorry BladeRunner, I have uploaded the entire project port now. I just updated the first post. bbtype.bmx is in the project zip file. :)


BladeRunner(Posted 2012) [#4]
As mentioned, you have to import all modules that arew used by your code. In Case of TList this would be BRL.LinkedList, but you can be shure that there will be others.


Captain Wicker (crazy hillbilly)(Posted 2012) [#5]
Gotcha, I'll work on it some more and come back if I have more problems. And thanks for the reminder! :D