Ignore:
Timestamp:
Feb 15, 2002, 2:57:40 PM (24 years ago)
Author:
sandervl
Message:

extended logging added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ole32/clipboard.c

    r7788 r7909  
    12011201  BOOL bClipboardOpen = FALSE;
    12021202  HRESULT hr = S_OK;
     1203  LPVOID src;
    12031204
    12041205  /*
     
    12411242
    12421243#ifdef __WIN32OS2__
    1243 {
    1244   //must make a copy of global handle returned by GetClipboardData; it
    1245   //is not valid after we call CloseClipboard
    1246   //Application is responsible for freeing the memory (Forte Agent does this)
    1247   LPVOID src;
    1248   LPVOID dest;
    1249   ULONG  size;
    1250   HANDLE hDest;
    1251 
     1244  /* Must make a copy of global handle returned by GetClipboardData; it
     1245   * is not valid after we call CloseClipboard
     1246   * Application is responsible for freeing the memory (Forte Agent does this)
     1247   */
    12521248  src = GlobalLock(hData);
    12531249  if(src) {
     1250      LPVOID dest;
     1251      ULONG  size;
     1252      HANDLE hDest;
     1253
    12541254      size = GlobalSize(hData);
    12551255      hDest = GlobalAlloc(GHND, size);
     
    12601260      hData = hDest;
    12611261  }
    1262 }
    12631262#endif
    12641263
Note: See TracChangeset for help on using the changeset viewer.