Re: what is the function name that you can send a function to be running every n milliseconds

2005-07-14 Thread zhanglei
y g wrote: Hello, I remember using some kind of function that allowed me to "send another function to the background" and be called every some milliseconds passed as parameter, but I can't remember its name or where the documentation lies If someone has a quick answer to that please help...

a question about gdk_event_put

2005-07-05 Thread zhanglei
hi,i have a question about gdk_event_put. i don't know when to free the memory gdk_event_new allocated. if i use local variable for the event structure,warning message will be printed as follow, (test2:3871): Gdk-CRITICAL **: file gdkkeys-x11.c: line 1171 (gdk_keymap_translate_keyboard_state): ass

Re: Compiling gtk apps on MingW

2005-07-03 Thread zhanglei
Ricardo Malafaia writed: all: test test.exe: test.c gcc.exe $(GTK_CFLAGS) $(GTK_LIBS) teste.c -o test.exe try to put $(GTK_LIBS) to the end of the command line gcc.exe $(GTK_CFLAGS) -o test.exe teste.c $(GTK_LIBS) ___ gtk-app-dev