#include <cmxexdc.h>
Inheritance diagram for CMXReferMasterIndex:
Public Member Functions | |
CMXReferMasterIndex (CMXExportDC *pDC) | |
void | SetType (WORD tType) |
BOOL | IsInWhichIndex (void) |
BOOL | WriteInIndex (CMXExportDC *pDC) |
writes the index details in the master index | |
INT32 | IndexEntrySize (CMXExportDC *pDC) |
Protected Attributes | |
WORD | Type |
Private Member Functions | |
CC_DECLARE_DYNAMIC (CMXReferMasterIndex) |
Definition at line 716 of file cmxexdc.h.
|
Definition at line 721 of file cmxexdc.h. 00721 : CMXReferListItemOffset(pDC) {};
|
|
|
|
Reimplemented from CMXReferListItem. Definition at line 727 of file cmxexdc.h.
|
|
Reimplemented from CMXReferListItem. Definition at line 725 of file cmxexdc.h. 00725 {return cmxINDEX_MASTERINDEX;};
|
|
Definition at line 723 of file cmxexdc.h. 00723 {Type = tType;};
|
|
writes the index details in the master index
Reimplemented from CMXReferListItem. Definition at line 720 of file cmxexdc.cpp. 00721 { 00722 // write the entry 00723 cmxMasterIndexEntry me; 00724 00725 me.Type = Type; 00726 me.Offset = Offset; 00727 00728 TRACEUSER( "Ben", _T("Writing entry in master index, type = %d, offset = %x = %d, size = %d\n"), Type, Offset, Offset, sizeof(me)); 00729 00730 if(!pDC->WriteData(&me, sizeof(me))) 00731 return FALSE; 00732 00733 return TRUE; 00734 }
|
|
|