Changeset 7926 for trunk/src/ole32/storage32.h
- Timestamp:
- Feb 15, 2002, 6:18:52 PM (24 years ago)
- File:
-
- 1 edited
-
trunk/src/ole32/storage32.h (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/storage32.h
r5602 r7926 180 180 * Storage32BaseImpl definitions. 181 181 * 182 * This st ucture defines the base information contained in all implementations183 * of IStorage32 contained in this file estorage implementation.182 * This structure defines the base information contained in all implementations 183 * of IStorage32 contained in this file storage implementation. 184 184 * 185 185 * In OOP terms, this is the base class for all the IStorage32 implementations … … 188 188 struct StorageBaseImpl 189 189 { 190 ICOM_VFIELD(IStorage); /* Needs to be the first item in the st uct190 ICOM_VFIELD(IStorage); /* Needs to be the first item in the struct 191 191 * since we want to cast this in a Storage32 pointer */ 192 192 … … 282 282 struct StorageImpl 283 283 { 284 ICOM_VFIELD(IStorage); /* Needs to be the first item in the stuct285 * 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 */ 286 286 287 287 /* … … 299 299 */ 300 300 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 302 306 /* 303 307 * File header … … 379 383 DWORD grfStateBits, /* [in] */ 380 384 DWORD grfMask); /* [in] */ 381 385 386 HRESULT WINAPI StorageImpl_Stat(IStorage* iface, 387 STATSTG* pstatstg, /* [out] */ 388 DWORD grfStatFlag); /* [in] */ 389 382 390 void StorageImpl_Destroy( 383 391 StorageImpl* This); … … 386 394 StorageImpl* This, 387 395 HANDLE hFile, 396 LPCOLESTR pwcsName, 388 397 ILockBytes* pLkbyt, 389 398 DWORD openFlags, … … 472 481 struct StorageInternalImpl 473 482 { 474 ICOM_VFIELD(IStorage); /* Needs to be the first item in the st uct483 ICOM_VFIELD(IStorage); /* Needs to be the first item in the struct 475 484 * since we want to cast this in a Storage32 pointer */ 476 485 … … 516 525 struct IEnumSTATSTGImpl 517 526 { 518 ICOM_VFIELD(IEnumSTATSTG); /* Needs to be the first item in the st uct527 ICOM_VFIELD(IEnumSTATSTG); /* Needs to be the first item in the struct 519 528 * since we want to cast this in a IEnumSTATSTG pointer */ 520 529 … … 601 610 struct StgStreamImpl 602 611 { 603 ICOM_VFIELD(IStream); /* Needs to be the first item in the st uct612 ICOM_VFIELD(IStream); /* Needs to be the first item in the struct 604 613 * since we want to cast this in a IStream pointer */ 605 614
Note:
See TracChangeset
for help on using the changeset viewer.
