Hello,
My project is a simple telnet terminal designed to help me understand
GTK+ with network programming.
I have a struct called networktype:
typedef struct networktype{
...
GtkTextBuffer *output_buffer;
..
} networktype;
I have a function:
void append_to_buffer( GtkTextBuffer *out
Alan M. Evans wrote:
On Mon, 2005-10-10 at 19:51, Dan McKinnon wrote:
typedef struct networktype{
...
GtkTextBuffer *output_buffer;
..
} networktype;
void append_to_buffer( GtkTextBuffer *output_buffer, char *text ){
GtkTextIter output_end
Oh my, what a silly mistake. Two days of head-pounding action and it
was indeed a silly mistake.
For the curious, I had a function
int network_connect( networktype *net ){
...
pthread_create(..., &net );
}
emphasis on the silly &net!
Ooops. Thanks for the support guys.
___