⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iin_probe.cpp

📁 PS2游戏硬盘直灌(HDL)的Windows下VC的源代码
💻 CPP
字号:
/* * iin_probe.c * $Id: iin_probe.c,v 1.6 2004/12/04 10:20:52 b081 Exp $ * * Copyright 2004 Bobi B., w1zard0f07@yahoo.com * * This file is part of hdl_dump. * * hdl_dump is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * hdl_dump is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with hdl_dump; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include "iin.h"#include "iin_optical.h"#include "iin_aspi.h"#include "iin_hdloader.h"#include "iin_net.h"#include "iin_nero.h"#include "iin_cdrwin.h"#include "iin_gi.h"#include "iin_iso.h"#include "iin_iml.h"#include "retcodes.h"intiin_probe (const char *path,	   iin_t **iin){  int result = RET_NOT_COMPAT;  /* prefix-driven inputs first */  if (result == RET_NOT_COMPAT)    result = iin_optical_probe_path (path, iin);#if defined (_BUILD_WIN32) && defined (_WITH_ASPI)  if (result == RET_NOT_COMPAT)    result = iin_aspi_probe_path (path, iin);#endif  if (result == RET_NOT_COMPAT)    result = iin_hdloader_probe_path (path, iin);  if (result == RET_NOT_COMPAT)    result = iin_net_probe_path (path, iin);  /* file-driven inputs next, ordered by accuracy */  if (result == RET_NOT_COMPAT)    result = iin_nero_probe_path (path, iin);  if (result == RET_NOT_COMPAT)    result = iin_cdrwin_probe_path (path, iin);  if (result == RET_NOT_COMPAT)    result = iin_gi_probe_path (path, iin);  if (result == RET_NOT_COMPAT)    result = iin_iso_probe_path (path, iin);  if (result == RET_NOT_COMPAT)    result = iin_iml_probe_path (path, iin);  return (result);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -