#include <cmxexdc.h>
Inheritance diagram for CMXReferDefaultScreen:
Public Member Functions | |
CMXReferDefaultScreen (CMXExportDC *pDC) | |
INT32 | IsInWhichDesc (void) |
BOOL | WriteInDesc (CMXExportDC *pDC) |
writes the default screen list entry -- same as the default one corel writes | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (CMXReferDefaultScreen) |
Definition at line 503 of file cmxexdc.h.
|
Definition at line 508 of file cmxexdc.h. 00508 : CMXReferListItem(pDC) {};
|
|
|
|
Reimplemented from CMXReferListItem. Definition at line 510 of file cmxexdc.h. 00510 {return cmxDESC_SCREEN;};
|
|
writes the default screen list entry -- same as the default one corel writes
Reimplemented from CMXReferListItem. Definition at line 539 of file cmxexdc.cpp. 00540 { 00541 if(pDC->IsThirtyTwoBit()) 00542 { 00543 cmxScreenDef32 scrdef = {0,0,0,0,0}; 00544 00545 if(!pDC->WriteTag(cmxTAG_DescrSection_Screen_Basic, &scrdef, sizeof(scrdef)) 00546 || !pDC->WriteMinEndTag()) 00547 return FALSE; 00548 } 00549 else 00550 { 00551 cmxScreenDef16 scrdef = {0,0,0,0}; 00552 00553 if(!pDC->WriteData(&scrdef, sizeof(scrdef))) 00554 return FALSE; 00555 } 00556 00557 return TRUE; 00558 }
|