summary refs log blame commit diff stats
path: root/plugins/sysinfo/pci.h
blob: 673f0a0a7e1be374df2a45dd1da1ba00a6f0904e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                       
                                                                            










                                                                   
/*
 * pci.h - PCI header for X-Sys
 * Copyright (C) 2005 Tony Vroon
 *
 * This program 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.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */


#ifndef _PCI_H_
#define _PCI_H_

#include <pci/pci.h>
void pci_find_fullname(char *fullname, char *vendor, char *device);
int  pci_find_by_class(u16 *class, char *vendor, char *device);

#endif
ht: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
:: run this from a command prompt
@echo off

SET PACKAGE_NAME=libxml2-2.9.0

copy win32\vc10\x64\Release\runsuite.exe .
set PATH=%PATH%;..\build\x64\bin;win32\vc10\x64\Release
runsuite.exe
del runsuite.exe
set LIBXML_SRC=%cd%
set LIBXML_DEST=%cd%-x64
echo.Press return when ready to install!
pause

rmdir /q /s %LIBXML_DEST%
mkdir %LIBXML_DEST%
mkdir %LIBXML_DEST%\bin
mkdir %LIBXML_DEST%\include
mkdir %LIBXML_DEST%\include\libxml
mkdir %LIBXML_DEST%\lib
mkdir %LIBXML_DEST%\share
mkdir %LIBXML_DEST%\share\doc
mkdir %LIBXML_DEST%\share\doc\libxml2
copy win32\vc10\x64\Release\libxml2.dll %LIBXML_DEST%\bin
copy win32\vc10\x64\Release\runsuite.exe %LIBXML_DEST%\bin
copy win32\vc10\x64\Release\libxml2.lib %LIBXML_DEST%\lib
copy include\win32config.h %LIBXML_DEST%\include
copy include\wsockcompat.h %LIBXML_DEST%\include
xcopy /s include\libxml\*.h %LIBXML_DEST%\include\libxml\
copy COPYING %LIBXML_DEST%\share\doc\libxml2

cd %LIBXML_DEST%
set PATH=%PATH%;%ProgramFiles%\7-zip
del ..\%PACKAGE_NAME%-x64.7z
7z a ..\%PACKAGE_NAME%-x64.7z *
cd %LIBXML_SRC%
rmdir /q /s %LIBXML_DEST%

echo.Finished!
pause