Ignore:
Timestamp:
May 16, 2002, 6:43:06 PM (23 years ago)
Author:
sandervl
Message:

Wine resync

File:
1 edited

Legend:

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

    r7926 r8441  
    99 * Copyright 1999 Sylvain St-Germain
    1010 * 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
    1227#ifdef __WIN32OS2__
    13 #include <odin.h>
    1428#include "ole32.h"
    1529#include "heapstring.h"
     
    2438#include "winnls.h"
    2539#include "wine/unicode.h"
    26 #include "debugtools.h"
     40#include "wine/debug.h"
    2741
    2842#include "storage32.h"
     
    3246#include "wine/wingdi16.h"
    3347
    34 DEFAULT_DEBUG_CHANNEL(storage);
     48WINE_DEFAULT_DEBUG_CHANNEL(storage);
    3549
    3650#define FILE_BEGIN 0
     
    55105524  DWORD          accessMode;
    55115525  WCHAR          fullname[MAX_PATH];
    5512   WIN32_FILE_ATTRIBUTE_DATA Fad;
     5526  DWORD          length;
    55135527
    55145528  TRACE("(%s, %p, %lx, %p, %ld, %p)\n",
     
    55535567                       0);
    55545568 
     5569  length = GetFileSize(hFile, NULL);
    55555570 
    55565571  if (hFile==INVALID_HANDLE_VALUE)
     
    56055620         grfMode,
    56065621         TRUE,
    5607          !(Fad.nFileSizeHigh || Fad.nFileSizeLow) /* FALSE */ );
     5622         !length );
    56085623 
    56095624  if (FAILED(hr))
Note: See TracChangeset for help on using the changeset viewer.