LarsGit223 commented on this pull request.
+ return success; +} + + +/** Create a new empty project. + * + * @return Address of the new structure. + * + **/ +WB_PROJECT *wb_project_new(gchar *filename) +{ + WB_PROJECT *new_prj; + + new_prj = g_new(WB_PROJECT, 1); + memset(new_prj, 0, sizeof(*new_prj));
Done.