#include <allegro5/allegro.h>
#include <allegro5/allegro_native_dialog.h>

int main(int argc, char **argv){
 
   ALLEGRO_DISPLAY *display = NULL;


   if(!al_init()) {
      al_show_native_message_box(NULL,NULL,NULL,"Could not initialize Allegro5",NULL,NULL);
   }
 
   display = al_create_display(800, 600);
   if(!display) {
     al_show_native_message_box(NULL,NULL,NULL,"Could not create Allegro Window",NULL,NULL);
   }
   
   // success 
   //al_show_native_message_box(display,"MessageBox Title","help","English",NULL,ALLEGRO_MESSAGEBOX_OK_CANCEL);
   // error why??
   al_show_native_message_box(display,"¸Þ¼¼Áö ¹Ú½º","help","ÇÑ±Û",NULL,ALLEGRO_MESSAGEBOX_OK_CANCEL);
   
   al_destroy_display(display);
 
   return 0;
}