Ignore:
Timestamp:
Feb 15, 2002, 6:18:52 PM (24 years ago)
Author:
sandervl
Message:

Wine 20020215 resync

File:
1 edited

Legend:

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

    r5602 r7926  
    180180 * Storage32BaseImpl definitions.
    181181 *
    182  * This stucture defines the base information contained in all implementations
    183  * of IStorage32 contained in this filee storage implementation.
     182 * This structure defines the base information contained in all implementations
     183 * of IStorage32 contained in this file storage implementation.
    184184 *
    185185 * In OOP terms, this is the base class for all the IStorage32 implementations
     
    188188struct StorageBaseImpl
    189189{
    190   ICOM_VFIELD(IStorage);   /* Needs to be the first item in the stuct
     190  ICOM_VFIELD(IStorage);   /* Needs to be the first item in the struct
    191191                            * since we want to cast this in a Storage32 pointer */
    192192
     
    282282struct StorageImpl
    283283{
    284   ICOM_VFIELD(IStorage);   /* Needs to be the first item in the stuct
    285                                       * since we want to cast this in a Storage32 pointer */
     284  ICOM_VFIELD(IStorage); /* Needs to be the first item in the struct
     285                          * since we want to cast this in a Storage32 pointer */
    286286
    287287  /*
     
    299299   */
    300300  HANDLE           hFile;      /* Physical support for the Docfile */
    301  
     301  LPOLESTR         pwcsName;   /* Full path of the document file */
     302
     303  /* FIXME: should this be in Storage32BaseImpl ? */
     304  WCHAR            filename[PROPERTY_NAME_BUFFER_LEN];
     305
    302306  /*
    303307   * File header
     
    379383            DWORD          grfStateBits, /* [in] */
    380384            DWORD          grfMask);     /* [in] */
    381        
     385
     386HRESULT WINAPI StorageImpl_Stat(IStorage* iface,
     387                                STATSTG*  pstatstg,     /* [out] */
     388                                DWORD     grfStatFlag); /* [in] */
     389
    382390void StorageImpl_Destroy(
    383391            StorageImpl* This);
     
    386394            StorageImpl* This,
    387395            HANDLE       hFile,
     396            LPCOLESTR    pwcsName,
    388397            ILockBytes*  pLkbyt,
    389398            DWORD        openFlags,
     
    472481struct StorageInternalImpl
    473482{
    474   ICOM_VFIELD(IStorage);        /* Needs to be the first item in the stuct
     483  ICOM_VFIELD(IStorage);        /* Needs to be the first item in the struct
    475484                                 * since we want to cast this in a Storage32 pointer */
    476485
     
    516525struct IEnumSTATSTGImpl
    517526{
    518   ICOM_VFIELD(IEnumSTATSTG);    /* Needs to be the first item in the stuct
     527  ICOM_VFIELD(IEnumSTATSTG);    /* Needs to be the first item in the struct
    519528                                         * since we want to cast this in a IEnumSTATSTG pointer */
    520529 
     
    601610struct StgStreamImpl
    602611{
    603   ICOM_VFIELD(IStream);  /* Needs to be the first item in the stuct
     612  ICOM_VFIELD(IStream);  /* Needs to be the first item in the struct
    604613                                    * since we want to cast this in a IStream pointer */
    605614 
Note: See TracChangeset for help on using the changeset viewer.