Changeset 7909 for trunk/src


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

extended logging added

Location:
trunk/src/ole32
Files:
2 added
2 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
  • trunk/src/ole32/ole32.mak

    r7397 r7909  
    1 # $Id: ole32.mak,v 1.15 2001-11-19 12:33:09 sandervl Exp $
     1# $Id: ole32.mak,v 1.16 2002-02-15 13:57:40 sandervl Exp $
    22
    33#
     
    1414MAKEFILE = ole32.mak
    1515
     16!if "$(DEBUG)" == "1"
     17DEFFILE    = ole32dbg.def
     18ORGDEFFILE = ole32.def
     19!endif
    1620
    1721#
     
    6165$(OBJDIR)\stubs.obj \
    6266$(OBJDIR)\ifs.obj \
     67!if "$(DEBUG)" == "1"
     68$(OBJDIR)\dbgwrap.obj \
     69!endif
    6370$(OBJDIR)\ole32rsrc.obj
    6471
Note: See TracChangeset for help on using the changeset viewer.