jueves, agosto 04, 2005

Escribiendo el Código de Mensajería



Mensajería de Winbridge es un programa para enviar y recibir mensajes en una Red de Area Local....

Basicamente esta escrito en Visual C++/Gtk

Para crear la Interface de Usuario Utilizo GTK y el codigo de VC++ es una simple concatenación de cadenas de caracteres....
La parte más importante del código es:





text_buffer=gtk_text_view_get_buffer(GTK_TEXT_VIEW(ptrDataMsg->textView));
gtk_text_buffer_get_start_iter(text_buffer,&start);
gtk_text_buffer_get_end_iter(text_buffer,&end);
buf=gtk_text_buffer_get_text(text_buffer,&start, &end,TRUE);

msg = "net send /domain:";
machine = gtk_combo_box_get_active_text (GTK_COMBO_BOX(ptrDataMsg->cbo));
msg = g_strconcat(msg,machine, " ",buf,NULL);

Compile and run Linux Kernel and Busybox for ARM 64 bits aarch64 on QEMU

Hello everyone, in this post you can read how to and where to download, compile and run Linux kernel and busybox for ARM64 processor. the ...