comparison os2/dw.c @ 289:0e6f09149eaa

Fixed some EMX warnings.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 19 Mar 2003 14:58:23 +0000
parents 54aafc134652
children 8ea5b2c35bfe
comparison
equal deleted inserted replaced
288:92367f4c0836 289:0e6f09149eaa
7959 */ 7959 */
7960 int API dw_timer_connect(int interval, void *sigfunc, void *data) 7960 int API dw_timer_connect(int interval, void *sigfunc, void *data)
7961 { 7961 {
7962 if(sigfunc) 7962 if(sigfunc)
7963 { 7963 {
7964 int timerid = WinStartTimer(dwhab, NULLHANDLE, timerid, interval); 7964 int timerid = WinStartTimer(dwhab, NULLHANDLE, 0, interval);
7965 7965
7966 if(timerid) 7966 if(timerid)
7967 { 7967 {
7968 _new_signal(WM_TIMER, NULLHANDLE, timerid, sigfunc, data); 7968 _new_signal(WM_TIMER, NULLHANDLE, timerid, sigfunc, data);
7969 return timerid; 7969 return timerid;