Pre-Compiler Sorting
Posted: Fri Sep 22, 2006 1:24 pm
Hi all,
When a program is very very big, whith a lot of includes (every function in a source "pbi" file)... it's very difficult to obtain that each proc, each global, each macro is in its place so that the compiler finds them in the corresponding order.
In order to obtain this, I've developed a "precompiler", that sorts all the source lines in its standard order:
It would be very useful if PB compiler made this work.
JOAQUIN
When a program is very very big, whith a lot of includes (every function in a source "pbi" file)... it's very difficult to obtain that each proc, each global, each macro is in its place so that the compiler finds them in the corresponding order.
In order to obtain this, I've developed a "precompiler", that sorts all the source lines in its standard order:
Code: Select all
Enumeration
#Constants
#Structures
#Globals
#Declares
#Macros
#Procedures
#Main
#Data
EndEnumeration
JOAQUIN