本文整理汇总了C++中PtrList::GetCount方法的典型用法代码示例。如果您正苦于以下问题:C++ PtrList::GetCount方法的具体用法?C++ PtrList::GetCount怎么用?C++ PtrList::GetCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PtrList
的用法示例。
在下文中一共展示了PtrList::GetCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
//###########################################
CPAGE_FUNC(uint32_t) CPAGE_GetCountPage()
{
PROLOG;
SetReturnCode_cpage(IDS_ERR_NO);
uint32_t rc = Page.GetCount();
EPILOG;
return rc;
}
示例2: myOpenSave
CPAGE_FUNC(Bool32) CPAGE_SavePage(Handle page,char * lpName)
{
PROLOG;
Bool32 rc = FALSE;
SetReturnCode_cpage(IDS_ERR_NO);
Handle file = myOpenSave((char *)lpName);
if(file)
{
#ifdef SAVE_COMPRESSED
uint32_t vers = VERSION_FILE_COMPRESSED;
#else
uint32_t vers = VERSION_FILE;
#endif
if(myWrite(file,&vers,sizeof(vers))==sizeof(vers))
{
if(page)
{
int count = 1;
rc = myWrite(file,&count,sizeof(count))==sizeof(count);
#ifdef SAVE_COMPRESSED
rc = PAGE_H(page).SaveCompress(file);
#else
rc = PAGE_H(page).Save(file);
#endif
}
else
{ int i;
int count = Page.GetCount();
rc = myWrite(file,&count,sizeof(count))==sizeof(count);
for(i=0;i<count && rc == TRUE;i++)
#ifdef SAVE_COMPRESSED
rc = PAGE_N(i).SaveCompress(file);
#else
rc = PAGE_N(i).Save(file);
#endif
}
}
myClose(file);
}
EPILOG;
return rc;
}