A viewer for a file based diary with entries written in markdown.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h> |
|
#include <gtk/gtk.h> |
|
|
|
#include "mainwindow.h" |
|
|
|
int main(int argc, char *argv[]) |
|
{ |
|
struct mainWindow *mainWindow; |
|
|
|
gtk_init(&argc, &argv); |
|
|
|
mainWindow = mainWindow_new(); |
|
gtk_widget_show(mainWindow->mainWindow); |
|
|
|
gtk_main(); |
|
|
|
return 0; |
|
}
|
|
|