=================================================================== RCS file: /home/cvs/OpenXM_contrib2/windows/asir32gui/asir32guiview.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- OpenXM_contrib2/windows/asir32gui/asir32guiview.cpp 2006/12/05 01:41:43 1.16 +++ OpenXM_contrib2/windows/asir32gui/asir32guiview.cpp 2007/02/13 09:20:44 1.17 @@ -724,7 +724,20 @@ BOOL CAsir32guiView::Create(LPCTSTR lpszClassName, LPC BOOL ret = CWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, nID, pContext); FILE *fp = fopen("asirgui.hnd","w"); + char *temp; + fprintf(fp,"%d",(unsigned int)theView->m_hWnd); fclose(fp); + if ( temp = getenv("TEMP") ) { + int len; + char *name; + + len = strlen(temp); + name = (char *)malloc(len+BUFSIZ); + sprintf(name,"%s\\asirgui.hnd",temp); + fopen(name,"w"); + fprintf(fp,"%d",(unsigned int)theView->m_hWnd); + fclose(fp); + } return ret; }