Changeset 1672


Ignore:
Timestamp:
Sep 5, 2012, 8:23:20 PM (13 years ago)
Author:
Steven Levine
Message:

Update comments

Location:
trunk/dll
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/filldir.c

    r1652 r1672  
    10151015                DosSleep(10);           // Give GUI time to work
    10161016                WinSetFocus(HWND_DESKTOP, hwndCnr);
     1017                // Retry
    10171018                if (!WinSendMsg(hwndCnr,
    10181019                                CM_INSERTRECORD,
     
    11571158                            MPFROMP(pciFirst), MPFROMP(&ri))) {
    11581159              DosSleep(10);             // Give GUI time to work
     1160              // Retry
    11591161              WinSetFocus(HWND_DESKTOP, hwndCnr);
    11601162              if (!WinSendMsg(hwndCnr, CM_INSERTRECORD,
  • trunk/dll/mainwnd.c

    r1670 r1672  
    18771877      ULONG numitems;
    18781878      USHORT usOperation;
    1879  
     1879
    18801880      cnd.pDragInfo = (PDRAGINFO) mp1;
    18811881      if (!DrgAccessDraginfo((PDRAGINFO) cnd.pDragInfo)) {
     
    31673167  }
    31683168}
     3169
     3170/**
     3171 * Close child windows
     3172 * @return TRUE if application data saved otherwise FALSE
     3173 */
    31693174
    31703175BOOL CloseChildren(HWND hwndClient)
  • trunk/dll/valid.c

    r1628 r1672  
    473473#endif
    474474
     475/**
     476 * Check if argument is file or directory
     477 * @returns: -1 (error), 0 (is a directory), or 1 (is a file)
     478 */
     479
    475480INT IsFile(PCSZ filename)
    476481{
    477   /* returns: -1 (error), 0 (is a directory), or 1 (is a file) */
    478482
    479483  FILESTATUS3 fsa;
Note: See TracChangeset for help on using the changeset viewer.