亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? avc_e00read.c

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? C
?? 第 1 頁 / 共 5 頁
字號:
        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFileARC;        psInfo->pasSections[iSect].pszName = CPLStrdup("ARC");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * CNT section (cnt.adf)     *----------------------------------------------------------------*/    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "cnt.adf": "cnt";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 &&         (psFile = AVCBinReadOpen(psInfo->pszCoverPath, szFname,                                  psInfo->eCoverType, AVCFileCNT,                                  psInfo->psDBCSInfo)) != NULL)    {        if (nCoverPrecision == AVC_DEFAULT_PREC)            nCoverPrecision = psFile->nPrecision;        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFileCNT;        psInfo->pasSections[iSect].pszName = CPLStrdup("CNT");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * LAB section (lab.adf)     *----------------------------------------------------------------*/    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "lab.adf": "lab";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 &&         (psFile = AVCBinReadOpen(psInfo->pszCoverPath, szFname,                                  psInfo->eCoverType, AVCFileLAB,                                  psInfo->psDBCSInfo)) != NULL)    {        if (nCoverPrecision == AVC_DEFAULT_PREC)            nCoverPrecision = psFile->nPrecision;        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFileLAB;        psInfo->pasSections[iSect].pszName = CPLStrdup("LAB");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * PAL section (pal.adf)     *----------------------------------------------------------------*/    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "pal.adf": "pal";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 &&         (psFile = AVCBinReadOpen(psInfo->pszCoverPath, szFname,                                  psInfo->eCoverType, AVCFilePAL,                                  psInfo->psDBCSInfo)) != NULL)    {        if (nCoverPrecision == AVC_DEFAULT_PREC)            nCoverPrecision = psFile->nPrecision;        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFilePAL;        psInfo->pasSections[iSect].pszName = CPLStrdup("PAL");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * TOL section (tol.adf for single precision, par.adf for double)     *----------------------------------------------------------------*/    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "tol.adf": "tol";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 &&         (psFile = AVCBinReadOpen(psInfo->pszCoverPath, szFname,                                  psInfo->eCoverType, AVCFileTOL,                                  psInfo->psDBCSInfo)) != NULL)    {        if (nCoverPrecision == AVC_DEFAULT_PREC)            nCoverPrecision = psFile->nPrecision;        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFileTOL;        psInfo->pasSections[iSect].pszName = CPLStrdup("TOL");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "par.adf": "par";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 &&         (psFile = AVCBinReadOpen(psInfo->pszCoverPath, szFname,                                  psInfo->eCoverType, AVCFileTOL,                                  psInfo->psDBCSInfo)) != NULL)    {        if (nCoverPrecision == AVC_DEFAULT_PREC)            nCoverPrecision = psFile->nPrecision;        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFileTOL;        psInfo->pasSections[iSect].pszName = CPLStrdup("TOL");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * TXT section (txt.adf)     *----------------------------------------------------------------*/    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "txt.adf": "txt";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 &&         (psFile = AVCBinReadOpen(psInfo->pszCoverPath, szFname,                                  psInfo->eCoverType, AVCFileTXT,                                  psInfo->psDBCSInfo)) != NULL)    {        if (nCoverPrecision == AVC_DEFAULT_PREC)            nCoverPrecision = psFile->nPrecision;        AVCBinReadClose(psFile);        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFileTXT;        psInfo->pasSections[iSect].pszName = CPLStrdup("TXT");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * TX6 section (*.txt)     * Scan the directory for files with a ".txt" extension.     * Note: Never seen those in a PC Arc/Info coverage!     * In weird coverages, the filename ends with "txt" but there is no "."     *----------------------------------------------------------------*/    if (psInfo->eCoverType == AVCCoverV7)        nCoverPrecision = _AVCE00ReadAddJabberwockySection(psInfo, AVCFileTX6,                                                           "TX6",                                                            nCoverPrecision,                                                           ".txt",                                                           papszCoverDir);    else if (psInfo->eCoverType == AVCCoverWeird)        nCoverPrecision = _AVCE00ReadAddJabberwockySection(psInfo, AVCFileTX6,                                                           "TX6",                                                            nCoverPrecision,                                                           "txt",                                                           papszCoverDir);    /*-----------------------------------------------------------------     * At this point, we should have read the coverage precsion... and if     * we haven't yet then we'll just use single by default.     * We'll need cPrecisionCode for some of the sections that follow.     *----------------------------------------------------------------*/    if (nCoverPrecision == AVC_DOUBLE_PREC)        cPrecisionCode = '3';    else        cPrecisionCode = '2';    /*-----------------------------------------------------------------     * SIN  2/3 and EOX lines ... ???     *----------------------------------------------------------------*/    iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                   &(psInfo->numSections), 2);    psInfo->pasSections[iSect].eType = AVCFileUnknown;    psInfo->pasSections[iSect].pszName = CPLStrdup("SIN  X");    psInfo->pasSections[iSect].pszName[5] = cPrecisionCode;    iSect++;    psInfo->pasSections[iSect].eType = AVCFileUnknown;    psInfo->pasSections[iSect].pszName = CPLStrdup("EOX");    iSect++;    /*-----------------------------------------------------------------     * LOG section (log.adf) (ends with EOL)     *----------------------------------------------------------------*/    /*-----------------------------------------------------------------     * PRJ section (prj.adf) (ends with EOP)     *----------------------------------------------------------------*/    szFname = (psInfo->eCoverType==AVCCoverV7 ||                psInfo->eCoverType==AVCCoverPC2 ) ? "prj.adf": "prj";    if ( (iFile=CSLFindString(papszCoverDir, szFname)) != -1 )    {        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), 1);        psInfo->pasSections[iSect].eType = AVCFilePRJ;        psInfo->pasSections[iSect].pszName = CPLStrdup("PRJ");        psInfo->pasSections[iSect].pszFilename=CPLStrdup(papszCoverDir[iFile]);    }    /*-----------------------------------------------------------------     * RXP section (*.rxp)     * Scan the directory for files with a ".rxp" extension.     *----------------------------------------------------------------*/    if (psInfo->eCoverType == AVCCoverV7)        _AVCE00ReadAddJabberwockySection(psInfo, AVCFileRXP, "RXP",                                          nCoverPrecision,".rxp",papszCoverDir);    else if (psInfo->eCoverType == AVCCoverWeird)        _AVCE00ReadAddJabberwockySection(psInfo, AVCFileRXP, "RXP",                                          nCoverPrecision,"rxp",papszCoverDir);    /*-----------------------------------------------------------------     * RPL section (*.pal)     * Scan the directory for files with a ".rpl" extension.     *----------------------------------------------------------------*/    if (psInfo->eCoverType == AVCCoverV7)        _AVCE00ReadAddJabberwockySection(psInfo, AVCFileRPL, "RPL",                                          nCoverPrecision,".pal",papszCoverDir);    else if (psInfo->eCoverType == AVCCoverWeird)        _AVCE00ReadAddJabberwockySection(psInfo, AVCFileRPL, "RPL",                                          nCoverPrecision,"rpl",papszCoverDir);    /*-----------------------------------------------------------------     * IFO section (tables)     *----------------------------------------------------------------*/    papszTables = papszFiles = NULL;    if (psInfo->eCoverType == AVCCoverV7 ||         psInfo->eCoverType == AVCCoverWeird)    {        /*-------------------------------------------------------------         * Unix coverages: get tables from the ../info/arc.dir         * Weird coverages: the arc.dir is similar but called "arcdr9"         *------------------------------------------------------------*/        papszTables = AVCBinReadListTables(psInfo->pszInfoPath,                                            psInfo->pszCoverName,                                           &papszFiles, psInfo->eCoverType,                                           psInfo->psDBCSInfo);    }    else if (psInfo->eCoverType == AVCCoverPC ||             psInfo->eCoverType == AVCCoverPC2)    {        /*-------------------------------------------------------------         * PC coverages: look for "???.dbf" in the coverage directory         *               and build the table name using the coverage name         *               as the table basename, and the dbf file basename         *               as the table extension.         *------------------------------------------------------------*/        for(iFile=0; papszCoverDir && papszCoverDir[iFile]; iFile++)        {            if ((nLen = strlen(papszCoverDir[iFile])) == 7 &&                EQUAL(papszCoverDir[iFile] + nLen -4, ".dbf"))            {                papszCoverDir[iFile][nLen - 4] = '\0';                szFname = CPLSPrintf("%s.%s", psInfo->pszCoverName,                                              papszCoverDir[iFile]);                pcTmp = (char*)szFname;                for( ; *pcTmp != '\0'; pcTmp++)                    *pcTmp = toupper(*pcTmp);                papszCoverDir[iFile][nLen - 4] = '.';                papszTables = CSLAddString(papszTables, szFname);                papszFiles = CSLAddString(papszFiles, papszCoverDir[iFile]);            }        }    }    if ((numTables = CSLCount(papszTables)) > 0)    {        iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                       &(psInfo->numSections), numTables+2);        psInfo->pasSections[iSect].eType = AVCFileUnknown;        psInfo->pasSections[iSect].pszName = CPLStrdup("IFO  X");        psInfo->pasSections[iSect].pszName[5] = cPrecisionCode;        iSect++;        for(iTable=0; iTable<numTables; iTable++)        {            psInfo->pasSections[iSect].eType = AVCFileTABLE;            psInfo->pasSections[iSect].pszName=CPLStrdup(papszTables[iTable]);            if (papszFiles)            {                psInfo->pasSections[iSect].pszFilename=                                              CPLStrdup(papszFiles[iTable]);            }            iSect++;        }        psInfo->pasSections[iSect].eType = AVCFileUnknown;        psInfo->pasSections[iSect].pszName = CPLStrdup("EOI");        iSect++;    }    CSLDestroy(papszTables);    CSLDestroy(papszFiles);    /*-----------------------------------------------------------------     * File ends with EOS     *----------------------------------------------------------------*/    iSect = _AVCIncreaseSectionsArray(&(psInfo->pasSections),                                   &(psInfo->numSections), 1);    psInfo->pasSections[iSect].eType = AVCFileUnknown;    psInfo->pasSections[iSect].pszName = CPLStrdup("EOS");    return nCoverPrecision;}/********************************************************************** *                     _AVCE00ReadScanE00() * * Processes an entire E00 file to find all the interesting sections. **********************************************************************/static void _AVCE00ReadScanE00(AVCE00ReadE00Ptr psRead){    AVCE00ParseInfo *psInfo = psRead->hParseInfo;    const char *pszLine;    const char *pszName = 0;    void       *obj;    int        iSect = 0;    while (CPLGetLastErrorNo() == 0 &&            (pszLine = CPLReadLine(psRead->hFile) ) != NULL )    {        obj = _AVCE00ReadNextLineE00(psRead, pszLine);        if (obj)        {            pszName = 0;            switch (psInfo->eFileType)            {            case AVCFileARC:

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩福利电影在线| 久久久亚洲高清| 亚洲va欧美va国产va天堂影院| 一本大道久久a久久精二百| 国产精品成人免费在线| 99精品国产热久久91蜜凸| 亚洲黄色性网站| 欧美日韩免费一区二区三区| 日韩成人免费电影| 久久久天堂av| 91免费国产视频网站| 亚洲成人黄色小说| 精品va天堂亚洲国产| 国产99一区视频免费| 亚洲激情av在线| 91麻豆精品国产综合久久久久久| 免费精品99久久国产综合精品| 久久久另类综合| 在线欧美小视频| 裸体健美xxxx欧美裸体表演| 国产亚洲精品免费| 在线观看视频一区二区| 激情五月婷婷综合网| 欧美激情一区二区三区全黄| 欧美色视频一区| 国产精品 欧美精品| 亚洲国产精品天堂| 精品国产成人系列| 欧美伊人精品成人久久综合97| 久草中文综合在线| 伊人婷婷欧美激情| 精品久久人人做人人爽| 色综合久久久久| 精品亚洲欧美一区| 亚洲成av人片在线| 国产三级精品视频| 欧美精品久久一区二区三区| 不卡av电影在线播放| 免费国产亚洲视频| 亚洲一区免费视频| 久久久精品一品道一区| 欧美日韩国产大片| 99国产精品国产精品毛片| 激情综合色综合久久综合| 亚洲一区二区三区视频在线播放 | 国产精品灌醉下药二区| 欧美麻豆精品久久久久久| 东方aⅴ免费观看久久av| 午夜国产精品影院在线观看| 中文字幕一区二区三区四区| 欧美不卡一二三| 欧美人体做爰大胆视频| 91网站视频在线观看| 美国精品在线观看| 香蕉av福利精品导航| 亚洲精品国产无天堂网2021| 国产精品人人做人人爽人人添| 欧美大胆一级视频| 正在播放亚洲一区| 91成人国产精品| 成人va在线观看| 国产精品一区二区果冻传媒| 香蕉成人啪国产精品视频综合网| 亚洲免费观看高清完整版在线观看熊| 国产色一区二区| 久久久亚洲国产美女国产盗摄| 欧美一二区视频| 91精品欧美一区二区三区综合在 | 精品国产凹凸成av人网站| 欧美高清激情brazzers| 欧美午夜精品久久久久久孕妇| av影院午夜一区| 91女人视频在线观看| 国产亚洲va综合人人澡精品| 欧美精品18+| 69精品人人人人| 91精品欧美福利在线观看| 欧美日韩二区三区| 色综合欧美在线| 欧美自拍丝袜亚洲| 欧美三级资源在线| 91精品国产色综合久久| 3d成人动漫网站| 精品99999| 久久精品一二三| 国产精品无遮挡| 一区二区三区在线免费| 一区二区三区丝袜| 亚洲成av人片www| 日本不卡一二三| 国产一区二区三区黄视频| 国内一区二区在线| 成人av电影免费观看| 在线观看网站黄不卡| 宅男噜噜噜66一区二区66| 精品乱人伦小说| 久久久国产精品麻豆| 亚洲乱码国产乱码精品精小说| 欧美视频中文一区二区三区在线观看| 欧美最猛黑人xxxxx猛交| 欧美日本一区二区三区四区| 国产精品美女久久久久av爽李琼| 国产精品久久久久久久久快鸭| 亚洲天堂网中文字| 日韩av电影免费观看高清完整版在线观看| 青青国产91久久久久久| 国产福利电影一区二区三区| 91麻豆精品在线观看| 欧美一级一级性生活免费录像| 久久久三级国产网站| 一二三四区精品视频| 久久99精品国产.久久久久久 | 国产在线日韩欧美| 一本大道av伊人久久综合| 欧美日韩成人激情| 久久欧美一区二区| 亚洲国产wwwccc36天堂| 国产精品香蕉一区二区三区| 欧美视频在线一区| 久久免费午夜影院| 亚洲一区二区中文在线| 国产一区二区精品久久99| 丰满白嫩尤物一区二区| 调教+趴+乳夹+国产+精品| 老司机精品视频线观看86| 不卡一区在线观看| 日韩一级精品视频在线观看| 国产精品国产三级国产普通话蜜臀| 亚洲福利视频一区| www.亚洲在线| 2020日本不卡一区二区视频| 亚洲一级不卡视频| 高潮精品一区videoshd| 日韩一二三四区| 亚洲第一在线综合网站| 成人午夜视频在线| 日韩欧美国产小视频| 国产精品久久久久aaaa樱花| 久久av老司机精品网站导航| 91精品办公室少妇高潮对白| 国产精品女人毛片| 国内久久精品视频| 日韩亚洲国产中文字幕欧美| 亚洲黄色在线视频| 91亚洲精品乱码久久久久久蜜桃| 欧美v亚洲v综合ⅴ国产v| 婷婷亚洲久悠悠色悠在线播放 | 国产精品妹子av| 韩国av一区二区三区在线观看| 久久综合精品国产一区二区三区| 日本精品视频一区二区| 久久久久国产精品人| 免费人成黄页网站在线一区二区| 91久久国产综合久久| 亚洲人成伊人成综合网小说| 成人性生交大片| 国产欧美精品一区| 91黄色免费看| 国产日韩视频一区二区三区| 色婷婷久久久久swag精品| 国产精品污污网站在线观看| 成人夜色视频网站在线观看| 国产日韩精品一区二区三区 | 日韩一二三区视频| 欧美三日本三级三级在线播放| 欧美一区二区大片| 国内精品伊人久久久久av一坑| 精品国产伦一区二区三区观看体验| 国产精品香蕉一区二区三区| 国产精品国产三级国产普通话三级| 91日韩一区二区三区| 午夜激情久久久| 国产精品美女久久久久久久 | 色天天综合久久久久综合片| 成人高清视频在线| 中文字幕在线一区免费| proumb性欧美在线观看| 国产大片一区二区| 日韩欧美成人一区| 亚洲成人av在线电影| 日韩av中文字幕一区二区三区| 国产**成人网毛片九色 | 亚洲精品高清在线观看| 日本道免费精品一区二区三区| 亚洲精品国产无天堂网2021 | 欧美一区二区三区播放老司机| 日本va欧美va精品发布| 欧美va亚洲va在线观看蝴蝶网| 国产精华液一区二区三区| 国产精品乱码久久久久久| 日本韩国欧美国产| 日本不卡一区二区三区| 久久久亚洲精品一区二区三区| 91在线无精精品入口| 午夜成人免费视频| 精品国产乱码久久久久久久| 北条麻妃国产九九精品视频| 亚洲观看高清完整版在线观看 | 国产夫妻精品视频| 亚洲精品国产高清久久伦理二区|