comparison gtk/dw.c @ 249:5a594058687f

Added empty dw_window_from_id()... will try to implement it shortly.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 19 Feb 2003 08:58:39 +0000
parents bdaaa06285fd
children a167001c56df
comparison
equal deleted inserted replaced
248:0f9a185deeb6 249:5a594058687f
2614 DW_MUTEX_LOCK; 2614 DW_MUTEX_LOCK;
2615 gtk_widget_set_sensitive(handle, TRUE); 2615 gtk_widget_set_sensitive(handle, TRUE);
2616 DW_MUTEX_UNLOCK; 2616 DW_MUTEX_UNLOCK;
2617 } 2617 }
2618 2618
2619 /*
2620 * Gets the child window handle with specified ID.
2621 * Parameters:
2622 * handle: Handle to the parent window.
2623 * id: Integer ID of the child.
2624 */
2625 HWND API dw_window_from_id(HWND handle, int id)
2626 {
2627 return 0L;
2628 }
2629
2619 void _strip_cr(char *dest, char *src) 2630 void _strip_cr(char *dest, char *src)
2620 { 2631 {
2621 int z, x = 0; 2632 int z, x = 0;
2622 2633
2623 for(z=0;z<strlen(src);z++) 2634 for(z=0;z<strlen(src);z++)