Difference between revisions of "Startup script"

From Code::Blocks
(Initial)
 
Line 10: Line 10:
  
 
See also: [[scripting commands]].
 
See also: [[scripting commands]].
[[Category:Documentation]]
+
[[Category:Code::Blocks_Documentation]]

Revision as of 09:43, 3 July 2006

Startup

When Code::Blocks finishes loading, it tries to load a script named startup.script. If it is found it then tries to execute the "function main()" inside it (if there). The user can edit this script to run arbitrary customization commands on application startup. The shipped startup.script just logs its presence in the application's debug log.

function main()
{
    Log(_T("Running startup script"));
}

See also: scripting commands.