Doxy comment for main()

This commit is contained in:
Campbell Barton 2014-03-30 20:14:57 +11:00
parent 8d1b289b78
commit 905c816834

@ -1478,12 +1478,21 @@ char **environ = NULL;
# endif
#endif
/**
* Blender's main function responsabilities are:
* - setup subsystems.
* - handle arguments.
* - run WM_main() event loop,
* or exit when running in background mode.
*/
int main(
int argc,
#ifdef WIN32
int main(int argc, const char **UNUSED(argv_c)) /* Do not mess with const */
const char **UNUSED(argv_c)
#else
int main(int argc, const char **argv)
const char **argv
#endif
)
{
bContext *C;
SYS_SystemHandle syshandle;