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.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/598#discussion_r134090461