├── .gitattributes ├── .gitignore ├── Durazno.sln ├── DuraznoGUI ├── App.xaml ├── App.xaml.cs ├── DuraznoGUI.csproj ├── INIsettings.cs ├── Icon.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Remap_Sel_Button.xaml ├── Remap_Sel_Button.xaml.cs ├── TitleMask.png ├── XboxButton.xaml ├── XboxButton.xaml.cs ├── app.config └── bg2.png ├── LICENSE ├── README ├── durazno ├── custom_func.c ├── durazno.c ├── durazno.h ├── durazno.vcxproj ├── file_io.c ├── transform.c ├── xinput.h ├── xinput1_1.def ├── xinput1_2.def ├── xinput1_3.def ├── xinput1_4.def ├── xinput9_1_0.def └── xinputuap.def └── makefile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/.gitignore -------------------------------------------------------------------------------- /Durazno.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/Durazno.sln -------------------------------------------------------------------------------- /DuraznoGUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/App.xaml -------------------------------------------------------------------------------- /DuraznoGUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/App.xaml.cs -------------------------------------------------------------------------------- /DuraznoGUI/DuraznoGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/DuraznoGUI.csproj -------------------------------------------------------------------------------- /DuraznoGUI/INIsettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/INIsettings.cs -------------------------------------------------------------------------------- /DuraznoGUI/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Icon.ico -------------------------------------------------------------------------------- /DuraznoGUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/MainWindow.xaml -------------------------------------------------------------------------------- /DuraznoGUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DuraznoGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DuraznoGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DuraznoGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /DuraznoGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DuraznoGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /DuraznoGUI/Remap_Sel_Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Remap_Sel_Button.xaml -------------------------------------------------------------------------------- /DuraznoGUI/Remap_Sel_Button.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/Remap_Sel_Button.xaml.cs -------------------------------------------------------------------------------- /DuraznoGUI/TitleMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/TitleMask.png -------------------------------------------------------------------------------- /DuraznoGUI/XboxButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/XboxButton.xaml -------------------------------------------------------------------------------- /DuraznoGUI/XboxButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/XboxButton.xaml.cs -------------------------------------------------------------------------------- /DuraznoGUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/app.config -------------------------------------------------------------------------------- /DuraznoGUI/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/DuraznoGUI/bg2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/README -------------------------------------------------------------------------------- /durazno/custom_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/custom_func.c -------------------------------------------------------------------------------- /durazno/durazno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/durazno.c -------------------------------------------------------------------------------- /durazno/durazno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/durazno.h -------------------------------------------------------------------------------- /durazno/durazno.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/durazno.vcxproj -------------------------------------------------------------------------------- /durazno/file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/file_io.c -------------------------------------------------------------------------------- /durazno/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/transform.c -------------------------------------------------------------------------------- /durazno/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinput.h -------------------------------------------------------------------------------- /durazno/xinput1_1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinput1_1.def -------------------------------------------------------------------------------- /durazno/xinput1_2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinput1_2.def -------------------------------------------------------------------------------- /durazno/xinput1_3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinput1_3.def -------------------------------------------------------------------------------- /durazno/xinput1_4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinput1_4.def -------------------------------------------------------------------------------- /durazno/xinput9_1_0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinput9_1_0.def -------------------------------------------------------------------------------- /durazno/xinputuap.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/durazno/xinputuap.def -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrossX/Durazno/HEAD/makefile --------------------------------------------------------------------------------