In VC2010 there is a linker option for function order.
How would i use that function so i could organize my functions rather than the compiler organize it automatically?
For example:-
Default order:
FunctionA
FunctionB
FunctionC
I would like it to be in this order:
FunctionC
FunctionA
FunctionB
etc
Actually i want all my function in a random order.