Changeset 1672
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/filldir.c
r1652 r1672 1015 1015 DosSleep(10); // Give GUI time to work 1016 1016 WinSetFocus(HWND_DESKTOP, hwndCnr); 1017 // Retry 1017 1018 if (!WinSendMsg(hwndCnr, 1018 1019 CM_INSERTRECORD, … … 1157 1158 MPFROMP(pciFirst), MPFROMP(&ri))) { 1158 1159 DosSleep(10); // Give GUI time to work 1160 // Retry 1159 1161 WinSetFocus(HWND_DESKTOP, hwndCnr); 1160 1162 if (!WinSendMsg(hwndCnr, CM_INSERTRECORD, -
trunk/dll/mainwnd.c
r1670 r1672 1877 1877 ULONG numitems; 1878 1878 USHORT usOperation; 1879 1879 1880 1880 cnd.pDragInfo = (PDRAGINFO) mp1; 1881 1881 if (!DrgAccessDraginfo((PDRAGINFO) cnd.pDragInfo)) { … … 3167 3167 } 3168 3168 } 3169 3170 /** 3171 * Close child windows 3172 * @return TRUE if application data saved otherwise FALSE 3173 */ 3169 3174 3170 3175 BOOL CloseChildren(HWND hwndClient) -
trunk/dll/valid.c
r1628 r1672 473 473 #endif 474 474 475 /** 476 * Check if argument is file or directory 477 * @returns: -1 (error), 0 (is a directory), or 1 (is a file) 478 */ 479 475 480 INT IsFile(PCSZ filename) 476 481 { 477 /* returns: -1 (error), 0 (is a directory), or 1 (is a file) */478 482 479 483 FILESTATUS3 fsa;
Note:
See TracChangeset
for help on using the changeset viewer.