Hello guys,<br /> I have one problem on win32 SDK.As u all know ,on Unix environment in gtk library there is a function called<br /> gtk_timeout_add.The details of the function is as follows<br /> <br /> gtk_timeout_add ()<br /><br /> guint gtk_timeout_add (guint32 interval, GtkFunction function, gpointer data);<br /><br />Description:<br />Registers a function to be called periodically. The function will be called repeatedly after interval milliseconds until it returns<br />FALSE at which point the timeout is destroyed and will not be called again.<br /><br /> interval : The time between calls to the function, in milliseconds (1/1000ths of a second.)<br /> function : The function to call periodically.<br /> data : The data to pass to the function.<br /> Returns : A unique id for the event source. <br /><br />Is there any function in windows similar to this.If yes then pl. tell me the name with full description.<br />If there is no such function in windows then pl tell me how to write a function which will act like gtk_timeout_add()<br /><br />thanx<br /><br />mama<br /><br />