本文整理汇总了C++中FileFormat::openFilefromPref方法的典型用法代码示例。如果您正苦于以下问题:C++ FileFormat::openFilefromPref方法的具体用法?C++ FileFormat::openFilefromPref怎么用?C++ FileFormat::openFilefromPref使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileFormat
的用法示例。
在下文中一共展示了FileFormat::openFilefromPref方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
Defaults::Defaults(void)
{
FileFormat *filef;
FSSpec fspec;
McoStatus status;
int magic_num;
int version;
Str255 def = MONACO_DEFAULT;
Str255 fold = MONACO_FOLDER;
// set factory defaults
printer_type = 1;
input_type = DT_None;
patch_format = 1;
port = 1;
// now try to load in the user defults
filef = new FileFormat;
ptocstr(def);
ptocstr(fold);
status = filef->openFilefromPref(&fspec,(char*)def,(char*)fold);
if (status != MCO_SUCCESS) goto bail;
status = filef->relRead(sizeof(int),(char*)&magic_num);
if (status != MCO_SUCCESS) goto bail;
if (magic_num != DEFAULTS_MAGIC_NUM) goto bail;
status = filef->relRead(sizeof(int),(char*)&version);
if (status != MCO_SUCCESS) goto bail;
if (version > DEFAULTS_VERSION) goto bail;
status = filef->relRead(sizeof(int),(char*)&printer_type);
if (status != MCO_SUCCESS) goto bail;
status = filef->relRead(sizeof(int),(char*)&input_type);
if (status != MCO_SUCCESS) goto bail;
status = filef->relRead(sizeof(int),(char*)&patch_format);
if (status != MCO_SUCCESS) goto bail;
status = filef->relRead(sizeof(int),(char*)&port);
if (status != MCO_SUCCESS) goto bail;
filef->closeFile();
bail:
delete filef;
}