Changeset 8441 for trunk/src/ole32/storage32.c
- Timestamp:
 - May 16, 2002, 6:43:06 PM (23 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/ole32/storage32.c (modified) (6 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/ole32/storage32.c
r7926 r8441 9 9 * Copyright 1999 Sylvain St-Germain 10 10 * Copyright 1999 Thuy Nguyen 11 */ 11 * 12 * This library is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU Lesser General Public 14 * License as published by the Free Software Foundation; either 15 * version 2.1 of the License, or (at your option) any later version. 16 * 17 * This library is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * Lesser General Public License for more details. 21 * 22 * You should have received a copy of the GNU Lesser General Public 23 * License along with this library; if not, write to the Free Software 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 */ 26 12 27 #ifdef __WIN32OS2__ 13 #include <odin.h>14 28 #include "ole32.h" 15 29 #include "heapstring.h" … … 24 38 #include "winnls.h" 25 39 #include "wine/unicode.h" 26 #include " debugtools.h"40 #include "wine/debug.h" 27 41 28 42 #include "storage32.h" … … 32 46 #include "wine/wingdi16.h" 33 47 34 DEFAULT_DEBUG_CHANNEL(storage);48 WINE_DEFAULT_DEBUG_CHANNEL(storage); 35 49 36 50 #define FILE_BEGIN 0 … … 5510 5524 DWORD accessMode; 5511 5525 WCHAR fullname[MAX_PATH]; 5512 WIN32_FILE_ATTRIBUTE_DATA Fad;5526 DWORD length; 5513 5527 5514 5528 TRACE("(%s, %p, %lx, %p, %ld, %p)\n", … … 5553 5567 0); 5554 5568 5569 length = GetFileSize(hFile, NULL); 5555 5570 5556 5571 if (hFile==INVALID_HANDLE_VALUE) … … 5605 5620 grfMode, 5606 5621 TRUE, 5607 ! (Fad.nFileSizeHigh || Fad.nFileSizeLow) /* FALSE */);5622 !length ); 5608 5623 5609 5624 if (FAILED(hr))  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  