Ignore:
Timestamp:
May 3, 2004, 2:09:01 PM (21 years ago)
Author:
sandervl
Message:

KSO: Clipboard updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/inituser32.cpp

    r10319 r10595  
    1 /* $Id: inituser32.cpp,v 1.18 2003-11-14 13:44:10 sandervl Exp $ */
     1/* $Id: inituser32.cpp,v 1.19 2004-05-03 12:09:01 sandervl Exp $ */
    22/*
    33 * USER32 DLL entry point
     
    8282  char  buffer[512];
    8383  UINT  len;
    84  
     84
    8585  if (RegOpenKeyExA(HKEY_LOCAL_MACHINE, REGPATH ,0, KEY_ALL_ACCESS, &hkFonts) == 0)
    8686  {
     
    9595      {
    9696         HDIR          hdirFindHandle = HDIR_CREATE;
    97          FILEFINDBUF3  FindBuffer     = {0};     
     97         FILEFINDBUF3  FindBuffer     = {0};
    9898         ULONG         ulResultBufLen = sizeof(FILEFINDBUF3);
    99          ULONG         ulFindCount    = 1, ret;       
    100          APIRET        rc             = NO_ERROR; 
     99         ULONG         ulFindCount    = 1, ret;
     100         APIRET        rc             = NO_ERROR;
    101101
    102102         GetWindowsDirectoryA( buffer, sizeof(buffer) );
     
    104104
    105105         rc = DosFindFirst( buffer, &hdirFindHandle, FILE_NORMAL,&FindBuffer, ulResultBufLen, &ulFindCount, FIL_STANDARD);
    106          //Check that file actaully exist 
     106         //Check that file actaully exist
    107107         if ( rc == NO_ERROR  && !(FindBuffer.attrFile & FILE_DIRECTORY))
    108108         {
     
    121121              }
    122122            }
    123          } 
     123         }
    124124         DosFindClose(hdirFindHandle);
    125125      }
     
    182182         MigrateWindowsFonts();
    183183
     184         InitClipboardFormats();
    184185         break;
    185186
Note: See TracChangeset for help on using the changeset viewer.