├── Freestyle ├── Application │ ├── FreestyleApp.cpp │ ├── FreestyleApp.h │ ├── FreestyleUIApp.cpp │ └── FreestyleUIApp.h ├── CXuiWaitList.cpp ├── CXuiWaitList.h ├── Content Indexing Specs.txt ├── Freestyle.vcproj ├── FreestyleDash.spa ├── FreestyleDash.spa.h ├── FreestyleDash.xlast ├── Media │ ├── Fonts │ │ └── Arial_16.xpr │ ├── Shaders │ │ └── Common │ │ │ └── DefaultShaders.hlsl │ └── nxeart ├── Scenes │ ├── About │ │ ├── ScnAbout.cpp │ │ └── ScnAbout.h │ ├── Abstracts │ │ ├── ConfigurableList │ │ │ ├── ConfigurableList.cpp │ │ │ └── ConfigurableList.h │ │ ├── ConfigurableScene │ │ │ ├── ConfigurableScene.cpp │ │ │ └── ConfigurableScene.h │ │ ├── GroupableScene │ │ │ ├── GroupableScene.cpp │ │ │ └── GroupableScene.h │ │ └── HideableScene │ │ │ ├── HideableScene.cpp │ │ │ └── HideableScene.h │ ├── Achievements │ │ ├── AchievementList │ │ │ ├── AchievementList.cpp │ │ │ └── AchievementList.h │ │ ├── ScnAchievements.cpp │ │ └── ScnAchievements.h │ ├── AvatarRenderer │ │ ├── ScnAvatar.cpp │ │ └── ScnAvatar.h │ ├── ChooseSkin │ │ ├── ScnChooseSkin.cpp │ │ └── ScnChooseSkin.h │ ├── CopyDVD │ │ ├── ScnCopyDVD.cpp │ │ └── ScnCopyDVD.h │ ├── DualPane │ │ ├── DestFileList │ │ │ ├── DestFileList.cpp │ │ │ └── DestFileList.h │ │ ├── ScnDualPane.cpp │ │ ├── ScnDualPane.h │ │ └── SourceFileList │ │ │ ├── SourceFileList.cpp │ │ │ └── SourceFileList.h │ ├── FileBrowser │ │ ├── FilesList │ │ │ ├── FilesList.cpp │ │ │ └── FilesList.h │ │ ├── ScnFileBrowser.cpp │ │ ├── ScnFileBrowser.h │ │ ├── ScnFileOp.cpp │ │ └── ScnFileOp.h │ ├── GameControls │ │ ├── ScnGameControls.cpp │ │ └── ScnGameControls.h │ ├── GameSaves │ │ ├── GameSaveList │ │ │ ├── SavedGamesList.cpp │ │ │ └── SavedGamesList.h │ │ ├── ScnGameSaves.cpp │ │ └── ScnGameSaves.h │ ├── GameView │ │ ├── GameList │ │ │ ├── GamesList.cpp │ │ │ └── GamesList.h │ │ ├── ScnGameView.cpp │ │ └── ScnGameView.h │ ├── GetCredentials │ │ ├── ScnGetCredentials.cpp │ │ └── ScnGetCredentials.h │ ├── Main │ │ ├── ScnMain.cpp │ │ └── ScnMain.h │ ├── ManagePaths │ │ ├── PathList │ │ │ ├── PathList.cpp │ │ │ └── PathList.h │ │ ├── RemovePathCallBack.cpp │ │ ├── RemovePathCallBack.h │ │ ├── ScnManagePaths.cpp │ │ └── ScnManagePaths.h │ ├── ManageTUs │ │ ├── ActiveList │ │ │ ├── ActiveList.cpp │ │ │ └── ActiveList.h │ │ ├── PathList │ │ │ ├── TUPaths.cpp │ │ │ └── TUPaths.h │ │ ├── ScnManageTUs.cpp │ │ ├── ScnManageTUs.h │ │ └── XML │ │ │ ├── TUXml.cpp │ │ │ └── TUXml.h │ ├── Media │ │ ├── Music │ │ │ ├── ScnMusic.cpp │ │ │ └── ScnMusic.h │ │ └── Videos │ │ │ ├── ScnVideo.cpp │ │ │ ├── ScnVideo.h │ │ │ └── VideoList │ │ │ ├── VideoList.cpp │ │ │ └── VideoList.h │ ├── Options │ │ ├── ScnOptionsContentSettings.cpp │ │ ├── ScnOptionsContentSettings.h │ │ ├── ScnOptionsGeneralSettings.cpp │ │ ├── ScnOptionsGeneralSettings.h │ │ ├── ScnOptionsMain.cpp │ │ ├── ScnOptionsMain.h │ │ ├── ScnOptionsSystemSettings.cpp │ │ ├── ScnOptionsSystemSettings.h │ │ ├── ScnOptionsXlinkKaiSettings.cpp │ │ ├── ScnOptionsXlinkKaiSettings.h │ │ ├── ScnParentContentSettings.cpp │ │ ├── ScnParentContentSettings.h │ │ ├── ScnParentGeneralSettings.cpp │ │ ├── ScnParentGeneralSettings.h │ │ ├── ScnParentKaiSettings.cpp │ │ ├── ScnParentKaiSettings.h │ │ ├── ScnParentSystemSettings.cpp │ │ └── ScnParentSystemSettings.h │ ├── Plugin │ │ ├── ScnPlugin.cpp │ │ ├── ScnPlugin.h │ │ ├── Screenshots │ │ │ ├── ScnPluginScreenshots.cpp │ │ │ └── ScnPluginScreenshots.h │ │ ├── Settings │ │ │ ├── ScnPluginSettings.cpp │ │ │ └── ScnPluginSettings.h │ │ └── Trainers │ │ │ ├── OptionList │ │ │ ├── TrainerOptionList.cpp │ │ │ └── TrainerOptionList.h │ │ │ ├── ScnPluginTrainers.cpp │ │ │ ├── ScnPluginTrainers.h │ │ │ └── TrainerList │ │ │ ├── TrainerList.cpp │ │ │ └── TrainerList.h │ ├── Popup │ │ ├── ScnPopupWindow.cpp │ │ └── ScnPopupWindow.h │ ├── Profile │ │ ├── ScnProfile.cpp │ │ ├── ScnProfile.h │ │ ├── ScnProfileTab.cpp │ │ └── ScnProfileTab.h │ ├── Rss │ │ ├── ScnRssReader.cpp │ │ └── ScnRssReader.h │ ├── Screenshots │ │ ├── ScnScreenshots.cpp │ │ ├── ScnScreenshots.h │ │ └── ScreenshotList │ │ │ ├── ScreenshotList.cpp │ │ │ └── ScreenshotList.h │ ├── SystemInfo │ │ ├── ScnSystemInfo.cpp │ │ └── ScnSystemInfo.h │ ├── TeamFSD │ │ ├── ScnTeamFSD.cpp │ │ └── ScnTeamFSD.h │ ├── Theme │ │ ├── Config │ │ │ ├── Canvas │ │ │ │ ├── ScnCanvasConfig.cpp │ │ │ │ └── ScnCanvasConfig.h │ │ │ └── Tab │ │ │ │ ├── ScnTabConfig.cpp │ │ │ │ ├── ScnTabConfig.h │ │ │ │ ├── TabConfigHub.cpp │ │ │ │ └── TabConfigHub.h │ │ └── Presenters │ │ │ ├── Canvas │ │ │ ├── CanvasPresenter.cpp │ │ │ ├── CanvasPresenter.h │ │ │ ├── ScnCanvasPresenter.cpp │ │ │ └── ScnCanvasPresenter.h │ │ │ └── Tab │ │ │ ├── ScnTabPresenter.cpp │ │ │ └── ScnTabPresenter.h │ ├── Updater │ │ ├── ScnUpdater.cpp │ │ └── ScnUpdater.h │ ├── Utilities │ │ ├── ScnUtilities.cpp │ │ └── ScnUtilities.h │ ├── Wait │ │ ├── ScnWait.cpp │ │ └── ScnWait.h │ ├── Weather │ │ ├── LocationList │ │ │ ├── LocationList.cpp │ │ │ └── LocationList.h │ │ ├── ScnWeather.cpp │ │ ├── ScnWeather.h │ │ ├── ScnWeatherLocation.cpp │ │ └── ScnWeatherLocation.h │ └── XLinkKai │ │ ├── ScnXlinkKai.cpp │ │ ├── ScnXlinkKai.h │ │ ├── ScnXlinkKaiArena.cpp │ │ ├── ScnXlinkKaiArena.h │ │ ├── ScnXlinkKaiChat.cpp │ │ ├── ScnXlinkKaiChat.h │ │ ├── ScnXlinkKaiHost.cpp │ │ ├── ScnXlinkKaiHost.h │ │ ├── ScnXlinkKaiPlayerInfo.cpp │ │ ├── ScnXlinkKaiPlayerInfo.h │ │ ├── ScnXlinkSignIn.cpp │ │ ├── ScnXlinkSignIn.h │ │ ├── XlinkKaiArenaList.cpp │ │ ├── XlinkKaiArenaList.h │ │ ├── XlinkKaiBuddyList.cpp │ │ ├── XlinkKaiBuddyList.h │ │ ├── XlinkKaiChatPlayerList.cpp │ │ ├── XlinkKaiChatPlayerList.h │ │ ├── XlinkKaiPlayerList.cpp │ │ ├── XlinkKaiPlayerList.h │ │ └── XlinkKaiTest.cpp ├── SkinManagerSpecs.txt ├── TODO.txt ├── Tools │ ├── AES │ │ ├── Rijndael.cpp │ │ └── Rijndael.h │ ├── AutoUpdater │ │ ├── AutoUpdater.cpp │ │ └── AutoUpdater.h │ ├── ContentList │ │ ├── ContentExtractor.cpp │ │ ├── ContentExtractor.h │ │ ├── ContentItemNew.cpp │ │ ├── ContentItemNew.h │ │ ├── ContentKaiVector.cpp │ │ ├── ContentKaiVector.h │ │ ├── ContentManager.cpp │ │ ├── ContentManager.h │ │ ├── ContentMerger.cpp │ │ ├── ContentMerger.h │ │ ├── CoverXml │ │ │ ├── CoverXML.cpp │ │ │ └── CoverXML.h │ │ ├── KaiVectorXML │ │ │ ├── KaiVectorXML.cpp │ │ │ └── KaiVectorXML.h │ │ └── MarketplaceXML │ │ │ ├── MarketPlaceASX.cpp │ │ │ ├── MarketPlaceASX.h │ │ │ ├── MarketPlaceOfferXML.cpp │ │ │ ├── MarketPlaceOfferXML.h │ │ │ ├── MarketPlaceXML.cpp │ │ │ └── MarketPlaceXML.h │ ├── DVDInfo │ │ ├── DVDItem.cpp │ │ ├── DVDItem.h │ │ ├── DVDWorker.cpp │ │ └── DVDWorker.h │ ├── Debug │ │ ├── Commands │ │ │ ├── AchievementCommand.h │ │ │ ├── BasicTestCommand.h │ │ │ ├── CheckSkinSetting.h │ │ │ ├── ConvertImagesToDXT5.h │ │ │ ├── CoverCheck.h │ │ │ ├── DebugCommand.h │ │ │ ├── DownloadCommand.h │ │ │ ├── ExtractAvatarData.h │ │ │ ├── ExtractCONCommand.h │ │ │ ├── FTPTestCommand.h │ │ │ ├── FileBrowserCommand.h │ │ │ ├── GetTimeCommand.h │ │ │ ├── HTTPDownloadToMemory.h │ │ │ ├── HTTPPauseCommand.h │ │ │ ├── HTTPQueueList.h │ │ │ ├── HTTPResumeCommand.h │ │ │ ├── HudCommand.cpp │ │ │ ├── HudCommand.h │ │ │ ├── LaunchXEXCommand.h │ │ │ ├── LoadPluginCommand.h │ │ │ ├── MemoryCommand.h │ │ │ ├── PingCommand.h │ │ │ ├── ProfileCommand.h │ │ │ ├── RestartCommand.h │ │ │ ├── SambaCommand.h │ │ │ ├── ScreenshotCommand.cpp │ │ │ ├── ScreenshotCommand.h │ │ │ ├── SetTimeCommand.h │ │ │ ├── SqliteDeleteDB.h │ │ │ ├── SqliteSnapshotCommand.h │ │ │ ├── ToggleDebugDisplay.h │ │ │ ├── TrayCloseCommand.h │ │ │ ├── TrayOpenCommand.h │ │ │ ├── UnMountCONCommand.h │ │ │ └── VirtualKeyCommand.h │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ └── KaiCommands │ │ │ ├── KaiAppspec.h │ │ │ ├── KaiConnect.h │ │ │ ├── KaiEndChat.h │ │ │ ├── KaiExitArena.h │ │ │ ├── KaiJoinArena.h │ │ │ ├── KaiMessage.h │ │ │ ├── KaiPM.h │ │ │ ├── KaiShutdown.h │ │ │ └── KaiStartChat.h │ ├── Encryption │ │ ├── MD5 │ │ │ ├── md5.cpp │ │ │ └── md5.h │ │ ├── Rijndael.cpp │ │ └── Rijndael.h │ ├── FTP │ │ ├── FTPFileWriter.cpp │ │ ├── FTPFileWriter.h │ │ ├── FTPServer.cpp │ │ ├── FTPServer.h │ │ ├── FTPServerConn.cpp │ │ └── FTPServerConn.h │ ├── FTPClient │ │ ├── ftplib.cpp │ │ └── ftplib.h │ ├── FileBrowser │ │ ├── FileBrowser.cpp │ │ ├── FileBrowser.h │ │ ├── FileBrowserBase.cpp │ │ ├── FileBrowserBase.h │ │ └── VirtualFileBrowser │ │ │ ├── VirtualFileBrowser.cpp │ │ │ └── VirtualFileBrowser.h │ ├── Fonts │ │ └── fontchars.h │ ├── GameContent │ │ ├── ContentCallbacks │ │ │ ├── CallbackMessageTypes.h │ │ │ ├── ContentCallback.cpp │ │ │ ├── ContentCallback.h │ │ │ ├── LoaderCallback.cpp │ │ │ └── LoaderCallback.h │ │ ├── GameContentManager.cpp │ │ ├── GameContentManager.h │ │ ├── GameContentMessages.h │ │ ├── GameContentSettings.cpp │ │ ├── GameContentTextures.cpp │ │ ├── GameContentTypes.h │ │ ├── QueueThreads │ │ │ ├── FileQueue.cpp │ │ │ ├── FileQueue.h │ │ │ ├── FileTexQueue.cpp │ │ │ ├── FileTexQueue.h │ │ │ ├── ReleaseQueue.cpp │ │ │ ├── ReleaseQueue.h │ │ │ ├── TextureQueue.cpp │ │ │ └── TextureQueue.h │ │ └── WorkerThreads │ │ │ ├── FileTexWorker.cpp │ │ │ ├── FileTexWorker.h │ │ │ ├── FileWorker.cpp │ │ │ ├── FileWorker.h │ │ │ ├── ReleaseWorker.cpp │ │ │ ├── ReleaseWorker.h │ │ │ ├── TextureWorker.cpp │ │ │ └── TextureWorker.h │ ├── Generic │ │ ├── BMP │ │ │ ├── BMPTools.cpp │ │ │ └── BMPTools.h │ │ ├── CRC_32.cpp │ │ ├── CRC_32.h │ │ ├── CustomMessages.h │ │ ├── DDS │ │ │ ├── DDSTools.cpp │ │ │ └── DDSTools.h │ │ ├── ExConfig.h │ │ ├── KernelExports.h │ │ ├── PNG │ │ │ ├── PNGTools.cpp │ │ │ ├── PNGTools.h │ │ │ ├── lodepng.cpp │ │ │ └── lodepng.h │ │ ├── Tools.cpp │ │ ├── Tools.h │ │ ├── XamExports.h │ │ ├── xboxtools.cpp │ │ └── xboxtools.h │ ├── HTTP │ │ ├── Base │ │ │ ├── HttpClient.cpp │ │ │ ├── HttpClient.h │ │ │ ├── HttpHeader.cpp │ │ │ ├── HttpHeader.h │ │ │ └── MemoryBuffer.h │ │ ├── HTTPDownloader.cpp │ │ ├── HTTPDownloader.h │ │ ├── HTTPWorker.cpp │ │ ├── HTTPWorker.h │ │ ├── HttpItem.cpp │ │ └── HttpItem.h │ ├── HTTPServer │ │ ├── HTTPHandler.cpp │ │ ├── HTTPHandler.h │ │ ├── HTTPServer.cpp │ │ ├── HTTPServer.h │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── embedhttp.cpp │ │ └── embedhttp.h │ ├── Managers │ │ ├── Achievements │ │ │ ├── AchievementManager.cpp │ │ │ └── AchievementManager.h │ │ ├── Drives │ │ │ ├── Drive.cpp │ │ │ ├── Drive.h │ │ │ ├── DrivesManager.cpp │ │ │ └── DrivesManager.h │ │ ├── FileOperation │ │ │ ├── FileCallBack.cpp │ │ │ ├── FileCallBackItem.cpp │ │ │ ├── FileCallBackItem.h │ │ │ ├── FileCallback.h │ │ │ ├── FileOperation.cpp │ │ │ ├── FileOperation.h │ │ │ ├── FileOperationManager.cpp │ │ │ └── FileOperationManager.h │ │ ├── GameList │ │ │ ├── GameListItem.cpp │ │ │ ├── GameListItem.h │ │ │ ├── GameListManager.cpp │ │ │ └── GameListManager.h │ │ ├── RSS │ │ │ ├── RssFeed.cpp │ │ │ ├── RssFeed.h │ │ │ ├── RssManager.cpp │ │ │ ├── RssManager.h │ │ │ ├── RssReader.h │ │ │ └── XML │ │ │ │ ├── RssXML.cpp │ │ │ │ └── RssXML.h │ │ ├── SambaClient │ │ │ ├── SambaClient.cpp │ │ │ └── SambaClient.h │ │ ├── SambaServer │ │ │ ├── SambaServer.cpp │ │ │ └── SambaServer.h │ │ ├── Screenshot │ │ │ ├── ScreenshotManager.cpp │ │ │ └── ScreenshotManager.h │ │ ├── Skin │ │ │ ├── SkinManager.cpp │ │ │ ├── SkinManager.h │ │ │ ├── SkinXMLReader │ │ │ │ ├── SkinXMLReader.cpp │ │ │ │ └── SkinXMLReader.h │ │ │ └── XML │ │ │ │ ├── SkinXml.cpp │ │ │ │ └── SkinXml.h │ │ ├── Theme │ │ │ ├── CanvasManager │ │ │ │ ├── CanvasManager.cpp │ │ │ │ └── CanvasManager.h │ │ │ ├── MenuManager │ │ │ │ ├── MenuManager.cpp │ │ │ │ └── MenuManager.h │ │ │ └── TabManager │ │ │ │ ├── TabManager.cpp │ │ │ │ ├── TabManager.h │ │ │ │ └── cleanup.txt │ │ ├── Timers │ │ │ ├── TimerManager.cpp │ │ │ └── TimerManager.h │ │ ├── TitleUpdates │ │ │ ├── TUDownloadManager.cpp │ │ │ ├── TUDownloadManager.h │ │ │ ├── TitleUpdateManager.cpp │ │ │ └── TitleUpdateManager.h │ │ ├── VariablesCache │ │ │ ├── VariablesCache.cpp │ │ │ └── VariablesCache.h │ │ ├── Version │ │ │ ├── VersionManager.cpp │ │ │ └── VersionManager.h │ │ ├── Video │ │ │ ├── VideoManager.cpp │ │ │ └── VideoManager.h │ │ ├── Weather │ │ │ ├── WeatherFeed.cpp │ │ │ ├── WeatherFeed.h │ │ │ ├── WeatherSearch.cpp │ │ │ ├── WeatherSearch.h │ │ │ └── XML │ │ │ │ ├── WeatherSearchXML.cpp │ │ │ │ ├── WeatherSearchXML.h │ │ │ │ ├── WeatherXML.cpp │ │ │ │ └── WeatherXML.h │ │ └── XZP │ │ │ ├── XZPManager.cpp │ │ │ └── XZPManager.h │ ├── Monitors │ │ ├── DVD │ │ │ ├── DVDMonitor.cpp │ │ │ └── DVDMonitor.h │ │ ├── Notification │ │ │ ├── NotificationMonitor.cpp │ │ │ └── NotificationMonitor.h │ │ ├── SignIn │ │ │ ├── SignInMonitor.cpp │ │ │ └── SignInMonitor.h │ │ └── Status │ │ │ ├── StatusMonitor.cpp │ │ │ └── StatusMonitor.h │ ├── NTP │ │ ├── NTP.cpp │ │ └── NTP.h │ ├── PKZip │ │ ├── PkZip.cpp │ │ └── PkZip.h │ ├── Plugin │ │ ├── PluginLoader.cpp │ │ └── PluginLoader.h │ ├── Profile │ │ ├── Account │ │ │ ├── Account.cpp │ │ │ └── Account.h │ │ ├── DashGPD │ │ │ ├── DashGPD.cpp │ │ │ └── DashGPD.h │ │ ├── GPD │ │ │ ├── GPD.cpp │ │ │ └── GPD.h │ │ ├── GameGPD │ │ │ ├── GameGPD.cpp │ │ │ └── GameGPD.h │ │ ├── PEC │ │ │ ├── PEC.cpp │ │ │ └── PEC.h │ │ ├── Profile.cpp │ │ └── Profile.h │ ├── Queue │ │ ├── Queue.cpp │ │ └── Queue.h │ ├── SMC │ │ ├── smc.cpp │ │ └── smc.h │ ├── SQLite │ │ ├── CSqlite.cpp │ │ ├── FSDSql.cpp │ │ ├── FSDSql.h │ │ ├── Sql.cpp │ │ ├── Sql.h │ │ ├── sqlite3.c │ │ ├── sqlite3.h │ │ └── sqlite3ext.h │ ├── Settings │ │ ├── Settings.cpp │ │ └── Settings.h │ ├── SqliteWrapper │ │ ├── KompexSQLiteDatabase.cpp │ │ ├── KompexSQLiteDatabase.h │ │ ├── KompexSQLiteException.h │ │ ├── KompexSQLitePrerequisites.h │ │ ├── KompexSQLiteStatement.cpp │ │ ├── KompexSQLiteStatement.h │ │ └── KompexSQLiteStreamRedirection.h │ ├── Streams │ │ ├── Stream.cpp │ │ └── Stream.h │ ├── TextScroller │ │ ├── TextScroller.cpp │ │ └── TextScroller.h │ ├── Texture │ │ ├── AnimatedTexture │ │ │ ├── AnimatedTexture.cpp │ │ │ └── AnimatedTexture.h │ │ ├── TextureCache.cpp │ │ ├── TextureCache.h │ │ └── TextureItem │ │ │ ├── TextureItem.cpp │ │ │ └── TextureItem.h │ ├── Threads │ │ ├── CopyDVDThread.cpp │ │ ├── CopyDVDThread.h │ │ ├── CopyThread.cpp │ │ ├── CopyThread.h │ │ ├── FTPClientThread.cpp │ │ ├── FTPClientThread.h │ │ ├── LoadingThread.cpp │ │ ├── LoadingThread.h │ │ ├── ThreadLock.cpp │ │ ├── ThreadLock.h │ │ ├── TitleUpdateThread.cpp │ │ ├── TitleUpdateThread.h │ │ ├── WorkerThread.cpp │ │ ├── WorkerThread.h │ │ ├── XeThread.cpp │ │ ├── XeThread.h │ │ ├── cthread.cpp │ │ └── cthread.h │ ├── XEX │ │ ├── SPA.cpp │ │ ├── SPA.h │ │ ├── Xbox360Container.cpp │ │ ├── Xbox360Container.h │ │ ├── XboxExecutable.cpp │ │ ├── XboxExecutable.h │ │ ├── XeXtractor.cpp │ │ └── XeXtractor.h │ ├── XFSD │ │ ├── XFSD.cpp │ │ └── XFSD.h │ ├── XML │ │ ├── XMLReader.cpp │ │ └── xmlreader.h │ └── XlinkKai │ │ ├── Arena │ │ ├── ArenaManager.cpp │ │ └── ArenaManager.h │ │ ├── Buddy │ │ ├── KaiBuddyManager.cpp │ │ └── KaiBuddyManager.h │ │ ├── Chat │ │ ├── ChatManager.cpp │ │ └── ChatManager.h │ │ ├── General │ │ ├── KaiManager.cpp │ │ └── KaiManager.h │ │ ├── KaiClient.cpp │ │ ├── KaiClient.h │ │ ├── KaiMail.h │ │ ├── KaiMessage.h │ │ ├── KaiNotifyManager.cpp │ │ ├── KaiNotifyManager.h │ │ ├── KaiPlayer.h │ │ ├── KaiRequestList.cpp │ │ ├── KaiRequestList.h │ │ ├── KaiUser.cpp │ │ ├── KaiUser.h │ │ ├── UdpClient.cpp │ │ └── UdpClient.h ├── dashversion.tmpl ├── dashversion.txt ├── dashversion.ver ├── embedfont.xpr ├── fsdbanner.png ├── fsdicon.png ├── main.cpp ├── nxeart.xlast ├── skinversion.tmpl ├── skinversion.txt ├── stdafx.cpp ├── stdafx.h ├── supprotedgames.txt ├── svnrevision.cpp ├── teamfsd.xfsd ├── versioner.exe └── xex.xml ├── FreestyleDashNoPlugin.sln ├── LICENSE.md ├── Libs ├── libiconv │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── COPYING │ ├── COPYING.LIB │ ├── ChangeLog │ ├── DEPENDENCIES │ ├── DESIGN │ ├── HACKING │ ├── INSTALL.generic │ ├── Makefile.devel │ ├── Makefile.in │ ├── NEWS │ ├── NOTES │ ├── PORTS │ ├── README │ ├── README.djgpp │ ├── README.woe32 │ ├── THANKS │ ├── aclocal.m4 │ ├── autogen.sh │ ├── build-aux │ │ ├── config.guess │ │ ├── config.libpath │ │ ├── config.rpath │ │ ├── config.sub │ │ ├── install-reloc │ │ ├── install-sh │ │ ├── link-warning.h │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── mkinstalldirs │ │ └── reloc-ldflags │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── djgpp │ │ ├── Makefile.maint │ │ ├── README │ │ ├── README.in │ │ ├── config.bat │ │ ├── config.sed │ │ ├── config.site │ │ ├── edtest.bat │ │ ├── fnchange.in │ │ ├── fnchange.lst │ │ ├── makefile.sed │ │ ├── sources.sed │ │ ├── stateful-check.sed │ │ ├── stateless-check.sed │ │ └── translit-check.sed │ ├── doc │ │ └── relocatable.texi │ ├── extras │ │ ├── ChangeLog │ │ ├── iconv_string.c │ │ └── iconv_string.h │ ├── gnulib-local │ │ ├── lib │ │ │ ├── alloca.in.h │ │ │ ├── error.h.diff │ │ │ ├── progname.h.diff │ │ │ ├── xalloc.h │ │ │ ├── xmalloc.c │ │ │ └── xstrdup.c │ │ ├── m4 │ │ │ └── alloca.m4 │ │ └── modules │ │ │ ├── libiconv-misc │ │ │ ├── mbstate │ │ │ └── xalloc │ ├── include │ │ ├── export.h │ │ ├── iconv.h │ │ ├── iconv.h.build.in │ │ └── iconv.h.in │ ├── lib │ │ ├── Makefile.in │ │ ├── aliases.gperf │ │ ├── aliases.h │ │ ├── aliases2.h │ │ ├── aliases_aix.h │ │ ├── aliases_aix_sysaix.h │ │ ├── aliases_dos.h │ │ ├── aliases_extra.h │ │ ├── aliases_osf1.h │ │ ├── aliases_osf1_sysosf1.h │ │ ├── aliases_sysaix.gperf │ │ ├── aliases_sysaix.h │ │ ├── aliases_syshpux.gperf │ │ ├── aliases_syshpux.h │ │ ├── aliases_sysosf1.gperf │ │ ├── aliases_sysosf1.h │ │ ├── aliases_syssolaris.gperf │ │ ├── aliases_syssolaris.h │ │ ├── armscii_8.h │ │ ├── ascii.h │ │ ├── atarist.h │ │ ├── big5.h │ │ ├── big5_2003.h │ │ ├── big5hkscs1999.h │ │ ├── big5hkscs2001.h │ │ ├── big5hkscs2004.h │ │ ├── c99.h │ │ ├── canonical.h │ │ ├── canonical_aix.h │ │ ├── canonical_aix_sysaix.h │ │ ├── canonical_dos.h │ │ ├── canonical_extra.h │ │ ├── canonical_local.h │ │ ├── canonical_local_sysaix.h │ │ ├── canonical_local_syshpux.h │ │ ├── canonical_local_sysosf1.h │ │ ├── canonical_local_syssolaris.h │ │ ├── canonical_osf1.h │ │ ├── canonical_osf1_sysosf1.h │ │ ├── canonical_sysaix.h │ │ ├── canonical_syshpux.h │ │ ├── canonical_sysosf1.h │ │ ├── canonical_syssolaris.h │ │ ├── ces_big5.h │ │ ├── ces_gbk.h │ │ ├── cjk_variants.h │ │ ├── cns11643.h │ │ ├── cns11643_1.h │ │ ├── cns11643_15.h │ │ ├── cns11643_2.h │ │ ├── cns11643_3.h │ │ ├── cns11643_4.h │ │ ├── cns11643_4a.h │ │ ├── cns11643_4b.h │ │ ├── cns11643_5.h │ │ ├── cns11643_6.h │ │ ├── cns11643_7.h │ │ ├── cns11643_inv.h │ │ ├── config.h.in │ │ ├── converters.h │ │ ├── cp1046.h │ │ ├── cp1124.h │ │ ├── cp1125.h │ │ ├── cp1129.h │ │ ├── cp1131.h │ │ ├── cp1133.h │ │ ├── cp1161.h │ │ ├── cp1162.h │ │ ├── cp1163.h │ │ ├── cp1250.h │ │ ├── cp1251.h │ │ ├── cp1252.h │ │ ├── cp1253.h │ │ ├── cp1254.h │ │ ├── cp1255.h │ │ ├── cp1256.h │ │ ├── cp1257.h │ │ ├── cp1258.h │ │ ├── cp437.h │ │ ├── cp737.h │ │ ├── cp775.h │ │ ├── cp850.h │ │ ├── cp852.h │ │ ├── cp853.h │ │ ├── cp855.h │ │ ├── cp856.h │ │ ├── cp857.h │ │ ├── cp858.h │ │ ├── cp860.h │ │ ├── cp861.h │ │ ├── cp862.h │ │ ├── cp863.h │ │ ├── cp864.h │ │ ├── cp865.h │ │ ├── cp866.h │ │ ├── cp869.h │ │ ├── cp874.h │ │ ├── cp922.h │ │ ├── cp932.h │ │ ├── cp932ext.h │ │ ├── cp936.h │ │ ├── cp936ext.h │ │ ├── cp943.h │ │ ├── cp949.h │ │ ├── cp950.h │ │ ├── cp950ext.h │ │ ├── dec_hanyu.h │ │ ├── dec_kanji.h │ │ ├── encodings.def │ │ ├── encodings_aix.def │ │ ├── encodings_dos.def │ │ ├── encodings_extra.def │ │ ├── encodings_local.def │ │ ├── encodings_osf1.def │ │ ├── euc_cn.h │ │ ├── euc_jisx0213.h │ │ ├── euc_jp.h │ │ ├── euc_kr.h │ │ ├── euc_tw.h │ │ ├── flags.h │ │ ├── flushwc.h │ │ ├── gb12345.h │ │ ├── gb12345ext.h │ │ ├── gb18030.h │ │ ├── gb18030ext.h │ │ ├── gb18030uni.h │ │ ├── gb2312.h │ │ ├── gbk.h │ │ ├── gbkext1.h │ │ ├── gbkext2.h │ │ ├── gbkext_inv.h │ │ ├── genaliases.c │ │ ├── genaliases2.c │ │ ├── genflags.c │ │ ├── gentranslit.c │ │ ├── georgian_academy.h │ │ ├── georgian_ps.h │ │ ├── hkscs1999.h │ │ ├── hkscs2001.h │ │ ├── hkscs2004.h │ │ ├── hp_roman8.h │ │ ├── hz.h │ │ ├── iconv.c │ │ ├── iconv_open1.h │ │ ├── iconv_open2.h │ │ ├── iso2022_cn.h │ │ ├── iso2022_cnext.h │ │ ├── iso2022_jp.h │ │ ├── iso2022_jp1.h │ │ ├── iso2022_jp2.h │ │ ├── iso2022_jp3.h │ │ ├── iso2022_kr.h │ │ ├── iso646_cn.h │ │ ├── iso646_jp.h │ │ ├── iso8859_1.h │ │ ├── iso8859_10.h │ │ ├── iso8859_11.h │ │ ├── iso8859_13.h │ │ ├── iso8859_14.h │ │ ├── iso8859_15.h │ │ ├── iso8859_16.h │ │ ├── iso8859_2.h │ │ ├── iso8859_3.h │ │ ├── iso8859_4.h │ │ ├── iso8859_5.h │ │ ├── iso8859_6.h │ │ ├── iso8859_7.h │ │ ├── iso8859_8.h │ │ ├── iso8859_9.h │ │ ├── isoir165.h │ │ ├── isoir165ext.h │ │ ├── java.h │ │ ├── jisx0201.h │ │ ├── jisx0208.h │ │ ├── jisx0212.h │ │ ├── jisx0213.h │ │ ├── johab.h │ │ ├── johab_hangul.h │ │ ├── koi8_r.h │ │ ├── koi8_ru.h │ │ ├── koi8_t.h │ │ ├── koi8_u.h │ │ ├── ksc5601.h │ │ ├── loop_unicode.h │ │ ├── loop_wchar.h │ │ ├── loops.h │ │ ├── mac_arabic.h │ │ ├── mac_centraleurope.h │ │ ├── mac_croatian.h │ │ ├── mac_cyrillic.h │ │ ├── mac_greek.h │ │ ├── mac_hebrew.h │ │ ├── mac_iceland.h │ │ ├── mac_roman.h │ │ ├── mac_romania.h │ │ ├── mac_thai.h │ │ ├── mac_turkish.h │ │ ├── mac_ukraine.h │ │ ├── mulelao.h │ │ ├── nextstep.h │ │ ├── pt154.h │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ ├── riscos1.h │ │ ├── rk1048.h │ │ ├── shift_jisx0213.h │ │ ├── sjis.h │ │ ├── tcvn.h │ │ ├── tds565.h │ │ ├── tis620.h │ │ ├── translit.def │ │ ├── translit.h │ │ ├── ucs2.h │ │ ├── ucs2be.h │ │ ├── ucs2internal.h │ │ ├── ucs2le.h │ │ ├── ucs2swapped.h │ │ ├── ucs4.h │ │ ├── ucs4be.h │ │ ├── ucs4internal.h │ │ ├── ucs4le.h │ │ ├── ucs4swapped.h │ │ ├── uhc_1.h │ │ ├── uhc_2.h │ │ ├── utf16.h │ │ ├── utf16be.h │ │ ├── utf16le.h │ │ ├── utf32.h │ │ ├── utf32be.h │ │ ├── utf32le.h │ │ ├── utf7.h │ │ ├── utf8.h │ │ ├── vietcomb.h │ │ └── viscii.h │ ├── libcharset │ │ ├── AUTHORS │ │ ├── COPYING.LIB │ │ ├── ChangeLog │ │ ├── DEPENDENCIES │ │ ├── HACKING │ │ ├── INSTALL.generic │ │ ├── INTEGRATE │ │ ├── Makefile.devel │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.djgpp │ │ ├── README.woe32 │ │ ├── autoconf │ │ │ └── aclocal.m4 │ │ ├── autogen.sh │ │ ├── build-aux │ │ │ ├── config.guess │ │ │ ├── config.libpath │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── mkinstalldirs │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── djgpp │ │ │ ├── Makefile.maint │ │ │ ├── README │ │ │ ├── README.in │ │ │ ├── config.bat │ │ │ ├── config.sed │ │ │ ├── config.site │ │ │ ├── fnchange.in │ │ │ └── fnchange.lst │ │ ├── include │ │ │ ├── export.h │ │ │ ├── libcharset.h.in │ │ │ ├── localcharset.h │ │ │ ├── localcharset.h.build.in │ │ │ └── localcharset.h.in │ │ ├── lib │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in │ │ │ ├── config.charset │ │ │ ├── localcharset.c │ │ │ ├── ref-add.sin │ │ │ ├── ref-del.sin │ │ │ ├── relocatable.c │ │ │ └── relocatable.h │ │ ├── m4 │ │ │ ├── codeset.m4 │ │ │ ├── glibc21.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── relocatable-lib.m4 │ │ │ └── visibility.m4 │ │ └── tools │ │ │ ├── README │ │ │ ├── aix-3.2.5 │ │ │ ├── aix-4.1.5 │ │ │ ├── aix-4.2.0 │ │ │ ├── aix-4.3.2 │ │ │ ├── all-charsets │ │ │ ├── all-charsets-X11 │ │ │ ├── all-locales │ │ │ ├── beos-5 │ │ │ ├── darwin-6.8 │ │ │ ├── darwin-7.5 │ │ │ ├── darwin-9.5 │ │ │ ├── freebsd-3.3 │ │ │ ├── glibc-2.1.3 │ │ │ ├── glibc-2.1.90 │ │ │ ├── glibc-2.2 │ │ │ ├── glibc-2.2-XF86-3.3.6 │ │ │ ├── glibc-2.2-XF86-4.0.1f │ │ │ ├── hpux-10.01 │ │ │ ├── hpux-10.20 │ │ │ ├── hpux-11.00 │ │ │ ├── irix-6.5 │ │ │ ├── locale_charmap │ │ │ ├── locale_charset.c │ │ │ ├── locale_codeset.c │ │ │ ├── locale_monthnames.c │ │ │ ├── locale_x11encoding.c │ │ │ ├── netbsd-3.0 │ │ │ ├── openbsd-4.1 │ │ │ ├── osf1-4.0a │ │ │ ├── osf1-4.0d │ │ │ ├── osf1-5.1 │ │ │ ├── solaris-2.4 │ │ │ ├── solaris-2.5.1 │ │ │ ├── solaris-2.6 │ │ │ ├── solaris-2.6-cjk │ │ │ ├── solaris-2.7 │ │ │ ├── sunos-4.1.4 │ │ │ └── win32 │ ├── libiconv_win32 │ │ ├── config.h │ │ ├── libiconv_win32.vcproj │ │ ├── libiconv_win32.vcproj.Jeffrey-PC.Jeffrey.user │ │ ├── libiconv_win32.vcproj.Quad.Kevin.user │ │ ├── libiconv_win32.vcxproj │ │ └── libiconv_win32.vcxproj.filters │ ├── m4 │ │ ├── cp.m4 │ │ ├── eilseq.m4 │ │ ├── endian.m4 │ │ ├── general.m4 │ │ ├── libtool.m4 │ │ ├── ln.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── proto.m4 │ ├── man │ │ ├── Makefile.in │ │ ├── iconv.1 │ │ ├── iconv.1.html │ │ ├── iconv.3 │ │ ├── iconv.3.html │ │ ├── iconv_close.3 │ │ ├── iconv_close.3.html │ │ ├── iconv_open.3 │ │ ├── iconv_open.3.html │ │ ├── iconv_open_into.3 │ │ ├── iconv_open_into.3.html │ │ ├── iconvctl.3 │ │ └── iconvctl.3.html │ ├── os2 │ │ └── iconv.def │ ├── po │ │ ├── ChangeLog │ │ ├── LINGUAS │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── af.gmo │ │ ├── af.po │ │ ├── bg.gmo │ │ ├── bg.po │ │ ├── boldquot.sed │ │ ├── ca.gmo │ │ ├── ca.po │ │ ├── da.gmo │ │ ├── da.po │ │ ├── de.gmo │ │ ├── de.po │ │ ├── el.gmo │ │ ├── el.po │ │ ├── en@boldquot.header │ │ ├── en@quot.header │ │ ├── eo.gmo │ │ ├── eo.po │ │ ├── es.gmo │ │ ├── es.po │ │ ├── et.gmo │ │ ├── et.po │ │ ├── fi.gmo │ │ ├── fi.po │ │ ├── fr.gmo │ │ ├── fr.po │ │ ├── ga.gmo │ │ ├── ga.po │ │ ├── gl.gmo │ │ ├── gl.po │ │ ├── hr.gmo │ │ ├── hr.po │ │ ├── hu.gmo │ │ ├── hu.po │ │ ├── id.gmo │ │ ├── id.po │ │ ├── insert-header.sin │ │ ├── it.gmo │ │ ├── it.po │ │ ├── libiconv.pot │ │ ├── nl.gmo │ │ ├── nl.po │ │ ├── pl.gmo │ │ ├── pl.po │ │ ├── pt_BR.gmo │ │ ├── pt_BR.po │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── rm.gmo │ │ ├── rm.po │ │ ├── ro.gmo │ │ ├── ro.po │ │ ├── ru.gmo │ │ ├── ru.po │ │ ├── sk.gmo │ │ ├── sk.po │ │ ├── sl.gmo │ │ ├── sl.po │ │ ├── sq.gmo │ │ ├── sq.po │ │ ├── sr.gmo │ │ ├── sr.po │ │ ├── stamp-po │ │ ├── sv.gmo │ │ ├── sv.po │ │ ├── tr.gmo │ │ ├── tr.po │ │ ├── uk.gmo │ │ ├── uk.po │ │ ├── vi.gmo │ │ ├── vi.po │ │ ├── wa.gmo │ │ ├── wa.po │ │ ├── zh_CN.gmo │ │ ├── zh_CN.po │ │ ├── zh_TW.gmo │ │ └── zh_TW.po │ ├── preload │ │ ├── Makefile.devel │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ └── configure.ac │ ├── src │ │ ├── Makefile.in │ │ ├── iconv.c │ │ └── iconv_no_i18n.c │ ├── srclib │ │ ├── Makefile.am │ │ ├── Makefile.gnulib │ │ ├── Makefile.in │ │ ├── alloca.in.h │ │ ├── areadlink.c │ │ ├── areadlink.h │ │ ├── binary-io.h │ │ ├── c-ctype.c │ │ ├── c-ctype.h │ │ ├── canonicalize-lgpl.c │ │ ├── canonicalize.h │ │ ├── errno.in.h │ │ ├── error.c │ │ ├── error.h │ │ ├── gettext.h │ │ ├── intprops.h │ │ ├── localcharset.h │ │ ├── malloc.c │ │ ├── malloca.c │ │ ├── malloca.h │ │ ├── malloca.valgrind │ │ ├── memmove.c │ │ ├── pathmax.h │ │ ├── progname.c │ │ ├── progname.h │ │ ├── progreloc.c │ │ ├── readlink.c │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ ├── relocwrapper.c │ │ ├── setenv.c │ │ ├── signal.in.h │ │ ├── sigprocmask.c │ │ ├── stdbool.in.h │ │ ├── stdint.in.h │ │ ├── stdio-write.c │ │ ├── stdio.in.h │ │ ├── stdlib.in.h │ │ ├── streq.h │ │ ├── strerror.c │ │ ├── string.in.h │ │ ├── unistd.in.h │ │ ├── unitypes.h │ │ ├── uniwidth.h │ │ ├── uniwidth │ │ │ ├── cjk.h │ │ │ └── width.c │ │ ├── unlocked-io.h │ │ ├── wchar.in.h │ │ ├── xalloc.h │ │ ├── xmalloc.c │ │ ├── xreadlink.c │ │ ├── xreadlink.h │ │ └── xstrdup.c │ ├── srcm4 │ │ ├── 00gnulib.m4 │ │ ├── alloca.m4 │ │ ├── canonicalize-lgpl.m4 │ │ ├── codeset.m4 │ │ ├── eealloc.m4 │ │ ├── environ.m4 │ │ ├── errno_h.m4 │ │ ├── error.m4 │ │ ├── extensions.m4 │ │ ├── gettext.m4 │ │ ├── glibc2.m4 │ │ ├── glibc21.m4 │ │ ├── gnulib-cache.m4 │ │ ├── gnulib-common.m4 │ │ ├── gnulib-comp.m4 │ │ ├── gnulib-tool.m4 │ │ ├── iconv.m4 │ │ ├── include_next.m4 │ │ ├── intdiv0.m4 │ │ ├── intl.m4 │ │ ├── intldir.m4 │ │ ├── intlmacosx.m4 │ │ ├── intmax.m4 │ │ ├── inttypes-pri.m4 │ │ ├── inttypes_h.m4 │ │ ├── lcmessage.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── lock.m4 │ │ ├── longlong.m4 │ │ ├── malloc.m4 │ │ ├── malloca.m4 │ │ ├── mbstate_t.m4 │ │ ├── memmove.m4 │ │ ├── multiarch.m4 │ │ ├── nls.m4 │ │ ├── pathmax.m4 │ │ ├── po.m4 │ │ ├── printf-posix.m4 │ │ ├── progtest.m4 │ │ ├── readlink.m4 │ │ ├── relocatable-lib.m4 │ │ ├── relocatable.m4 │ │ ├── setenv.m4 │ │ ├── signal_h.m4 │ │ ├── signalblocking.m4 │ │ ├── sigpipe.m4 │ │ ├── size_max.m4 │ │ ├── ssize_t.m4 │ │ ├── stdbool.m4 │ │ ├── stdint.m4 │ │ ├── stdint_h.m4 │ │ ├── stdio_h.m4 │ │ ├── stdlib_h.m4 │ │ ├── strerror.m4 │ │ ├── string_h.m4 │ │ ├── threadlib.m4 │ │ ├── uintmax_t.m4 │ │ ├── unistd_h.m4 │ │ ├── unlocked-io.m4 │ │ ├── visibility.m4 │ │ ├── wchar.m4 │ │ ├── wchar_t.m4 │ │ ├── wint_t.m4 │ │ └── xsize.m4 │ ├── tests │ │ ├── ARMSCII-8.IRREVERSIBLE.TXT │ │ ├── ARMSCII-8.TXT │ │ ├── ASCII.TXT │ │ ├── ATARIST.TXT │ │ ├── BIG5-2003.IRREVERSIBLE.TXT │ │ ├── BIG5-2003.TXT │ │ ├── BIG5-HKSCS-1999-snippet │ │ ├── BIG5-HKSCS-1999-snippet.UTF-8 │ │ ├── BIG5-HKSCS-1999.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-1999.TXT │ │ ├── BIG5-HKSCS-2001-snippet │ │ ├── BIG5-HKSCS-2001-snippet.UTF-8 │ │ ├── BIG5-HKSCS-2001.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-2001.TXT │ │ ├── BIG5-HKSCS-2004-snippet │ │ ├── BIG5-HKSCS-2004-snippet.UTF-8 │ │ ├── BIG5-HKSCS-2004.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-2004.TXT │ │ ├── BIG5.TXT │ │ ├── CP1046.TXT │ │ ├── CP1124.TXT │ │ ├── CP1125.TXT │ │ ├── CP1129.TXT │ │ ├── CP1131.TXT │ │ ├── CP1133.TXT │ │ ├── CP1161.IRREVERSIBLE.TXT │ │ ├── CP1161.TXT │ │ ├── CP1162.TXT │ │ ├── CP1163.IRREVERSIBLE.TXT │ │ ├── CP1163.TXT │ │ ├── CP1250.TXT │ │ ├── CP1251.TXT │ │ ├── CP1252.TXT │ │ ├── CP1253.TXT │ │ ├── CP1254.TXT │ │ ├── CP1255-snippet │ │ ├── CP1255-snippet.UTF-8 │ │ ├── CP1255.IRREVERSIBLE.TXT │ │ ├── CP1255.TXT │ │ ├── CP1256.TXT │ │ ├── CP1257.TXT │ │ ├── CP1258-snippet │ │ ├── CP1258-snippet.UTF-8 │ │ ├── CP1258.IRREVERSIBLE.TXT │ │ ├── CP1258.TXT │ │ ├── CP437.TXT │ │ ├── CP737.TXT │ │ ├── CP775.TXT │ │ ├── CP850.TXT │ │ ├── CP852.TXT │ │ ├── CP853.TXT │ │ ├── CP855.TXT │ │ ├── CP856.TXT │ │ ├── CP857.TXT │ │ ├── CP858.TXT │ │ ├── CP860.TXT │ │ ├── CP861.TXT │ │ ├── CP862.TXT │ │ ├── CP863.TXT │ │ ├── CP864.TXT │ │ ├── CP865.TXT │ │ ├── CP866.TXT │ │ ├── CP869.TXT │ │ ├── CP874.TXT │ │ ├── CP922.TXT │ │ ├── CP932.IRREVERSIBLE.TXT │ │ ├── CP932.TXT │ │ ├── CP936.TXT │ │ ├── CP949.TXT │ │ ├── CP950.IRREVERSIBLE.TXT │ │ ├── CP950.TXT │ │ ├── DEC-HANYU.IRREVERSIBLE.TXT │ │ ├── DEC-HANYU.TXT │ │ ├── DEC-KANJI.TXT │ │ ├── EUC-CN.TXT │ │ ├── EUC-JISX0213.TXT │ │ ├── EUC-JP.IRREVERSIBLE.TXT │ │ ├── EUC-JP.TXT │ │ ├── EUC-KR.TXT │ │ ├── EUC-TW.IRREVERSIBLE.TXT │ │ ├── EUC-TW.TXT │ │ ├── GB18030-BMP.TXT │ │ ├── GBK.TXT │ │ ├── Georgian-Academy.TXT │ │ ├── Georgian-PS.TXT │ │ ├── HP-ROMAN8.TXT │ │ ├── HZ-snippet │ │ ├── HZ-snippet.UTF-8 │ │ ├── ISO-2022-CN-EXT-snippet │ │ ├── ISO-2022-CN-EXT-snippet.UTF-8 │ │ ├── ISO-2022-CN-snippet │ │ ├── ISO-2022-CN-snippet.UTF-8 │ │ ├── ISO-2022-JP-1-snippet │ │ ├── ISO-2022-JP-1-snippet.UTF-8 │ │ ├── ISO-2022-JP-2-snippet │ │ ├── ISO-2022-JP-2-snippet.UTF-8 │ │ ├── ISO-2022-JP-3-snippet │ │ ├── ISO-2022-JP-3-snippet.UTF-8 │ │ ├── ISO-2022-JP-snippet │ │ ├── ISO-2022-JP-snippet.UTF-8 │ │ ├── ISO-2022-KR-snippet │ │ ├── ISO-2022-KR-snippet.UTF-8 │ │ ├── ISO-8859-1.TXT │ │ ├── ISO-8859-10.TXT │ │ ├── ISO-8859-11.TXT │ │ ├── ISO-8859-13.TXT │ │ ├── ISO-8859-14.TXT │ │ ├── ISO-8859-15.TXT │ │ ├── ISO-8859-16.TXT │ │ ├── ISO-8859-2.TXT │ │ ├── ISO-8859-3.TXT │ │ ├── ISO-8859-4.TXT │ │ ├── ISO-8859-5.TXT │ │ ├── ISO-8859-6.TXT │ │ ├── ISO-8859-7.TXT │ │ ├── ISO-8859-8.TXT │ │ ├── ISO-8859-9.TXT │ │ ├── ISO-IR-165.IRREVERSIBLE.TXT │ │ ├── ISO-IR-165.TXT │ │ ├── ISO646-CN.TXT │ │ ├── ISO646-JP.TXT │ │ ├── JIS_X0201.TXT │ │ ├── JOHAB.TXT │ │ ├── KOI8-R.TXT │ │ ├── KOI8-RU.TXT │ │ ├── KOI8-T.TXT │ │ ├── KOI8-U.TXT │ │ ├── MacArabic.TXT │ │ ├── MacCentralEurope.TXT │ │ ├── MacCroatian.TXT │ │ ├── MacCyrillic.TXT │ │ ├── MacGreek.TXT │ │ ├── MacHebrew.TXT │ │ ├── MacIceland.TXT │ │ ├── MacRoman.TXT │ │ ├── MacRomania.TXT │ │ ├── MacThai.TXT │ │ ├── MacTurkish.TXT │ │ ├── MacUkraine.TXT │ │ ├── Makefile.in │ │ ├── MuleLao-1.TXT │ │ ├── NEXTSTEP.TXT │ │ ├── PT154.TXT │ │ ├── Quotes.ASCII │ │ ├── Quotes.ISO-8859-1 │ │ ├── Quotes.UTF-8 │ │ ├── RISCOS-LATIN1.TXT │ │ ├── RK1048.TXT │ │ ├── SHIFT_JIS.TXT │ │ ├── SHIFT_JISX0213.TXT │ │ ├── TCVN-snippet │ │ ├── TCVN-snippet.UTF-8 │ │ ├── TCVN.IRREVERSIBLE.TXT │ │ ├── TCVN.TXT │ │ ├── TDS565.TXT │ │ ├── TIS-620.TXT │ │ ├── Translit1.ASCII │ │ ├── Translit1.ISO-8859-1 │ │ ├── TranslitFail1.ISO-8859-1 │ │ ├── UCS-2BE-snippet │ │ ├── UCS-2BE-snippet.UTF-8 │ │ ├── UCS-2LE-snippet │ │ ├── UCS-2LE-snippet.UTF-8 │ │ ├── UCS-4BE-snippet │ │ ├── UCS-4BE-snippet.UTF-8 │ │ ├── UCS-4LE-snippet │ │ ├── UCS-4LE-snippet.UTF-8 │ │ ├── UTF-16-snippet │ │ ├── UTF-16-snippet.UTF-8 │ │ ├── UTF-16BE-snippet │ │ ├── UTF-16BE-snippet.UTF-8 │ │ ├── UTF-16LE-snippet │ │ ├── UTF-16LE-snippet.UTF-8 │ │ ├── UTF-32-snippet │ │ ├── UTF-32-snippet.UTF-8 │ │ ├── UTF-32BE-snippet │ │ ├── UTF-32BE-snippet.UTF-8 │ │ ├── UTF-32LE-snippet │ │ ├── UTF-32LE-snippet.UTF-8 │ │ ├── UTF-7-snippet │ │ ├── UTF-7-snippet.UTF-8 │ │ ├── VISCII.TXT │ │ ├── check-stateful │ │ ├── check-stateful.bat │ │ ├── check-stateless │ │ ├── check-stateless.bat │ │ ├── check-subst │ │ ├── check-translit │ │ ├── check-translit.bat │ │ ├── check-translitfailure │ │ ├── gengb18030z.c │ │ ├── genutf8.c │ │ ├── table-from.c │ │ ├── table-to.c │ │ ├── test-shiftseq.c │ │ └── uniq-u.c │ ├── tools │ │ ├── 8bit_tab_to_h.c │ │ ├── JISX0213.TXT │ │ ├── Makefile │ │ ├── cjk_tab_to_h.c │ │ └── cjk_variants.c │ ├── windows │ │ ├── iconv.rc │ │ ├── libiconv.rc │ │ └── windres-options │ └── woe32dll │ │ ├── export.h │ │ └── iconv-exports.c └── libsmbd │ ├── .dmallocrc │ ├── .indent.pro │ ├── Doxyfile │ ├── Makefile │ ├── Makefile.in │ ├── VERSION │ ├── aclocal.m4 │ ├── auth │ ├── auth.c │ ├── auth_builtin.c │ ├── auth_compat.c │ ├── auth_domain.c │ ├── auth_ntlmssp.c │ ├── auth_sam.c │ ├── auth_script.c │ ├── auth_server.c │ ├── auth_unix.c │ ├── auth_util.c │ ├── auth_winbind.c │ ├── pampass.c │ └── pass_check.c │ ├── autogen.sh │ ├── change-log │ ├── client │ ├── client.c │ ├── client_proto.h │ ├── clitar.c │ ├── mount.cifs.c │ ├── smbctool.c │ ├── smbmnt.c │ ├── smbmount.c │ ├── smbspool.c │ ├── smbumount.c │ ├── tree.c │ └── umount.cifs.c │ ├── codepages │ ├── lowcase.dat │ ├── upcase.dat │ └── valid.dat │ ├── config.guess │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.developer │ ├── configure.in │ ├── configure.txt │ ├── configurexbmc.sh │ ├── dynconfig.c │ ├── groupdb │ └── mapping.c │ ├── include │ ├── MacExtensions.h │ ├── ads.h │ ├── ads_cldap.h │ ├── ads_dns.h │ ├── adt_tree.h │ ├── asn_1.h │ ├── auth.h │ ├── authdata.h │ ├── build_env.h │ ├── byteorder.h │ ├── charset.h │ ├── client.h │ ├── clitar.h │ ├── config.h │ ├── config.h.in │ ├── config_mingw.h │ ├── debug.h │ ├── debugparse.h │ ├── dlinklist.h │ ├── doserr.h │ ├── dynconfig.h │ ├── event.h │ ├── fake_file.h │ ├── gpo.h │ ├── hmacmd5.h │ ├── idmap.h │ ├── includes.h │ ├── interfaces.h │ ├── intl.h │ ├── libmsrpc.h │ ├── libmsrpc_internal.h │ ├── libsmb_internal.h │ ├── libsmbclient.h │ ├── local.h │ ├── mangle.h │ ├── mapping.h │ ├── md5.h │ ├── messages.h │ ├── module.h │ ├── msdfs.h │ ├── nameserv.h │ ├── nt_printing.h │ ├── nt_status.h │ ├── ntdomain.h │ ├── nterr.h │ ├── ntioctl.h │ ├── ntlmssp.h │ ├── ntquotas.h │ ├── passdb.h │ ├── popt_common.h │ ├── printing.h │ ├── privileges.h │ ├── proto.h │ ├── pstring.h │ ├── rap.h │ ├── reg_objects.h │ ├── regfio.h │ ├── rpc_brs.h │ ├── rpc_client.h │ ├── rpc_dce.h │ ├── rpc_dfs.h │ ├── rpc_ds.h │ ├── rpc_echo.h │ ├── rpc_eventlog.h │ ├── rpc_lsa.h │ ├── rpc_misc.h │ ├── rpc_netlogon.h │ ├── rpc_ntsvcs.h │ ├── rpc_perfcount.h │ ├── rpc_perfcount_defs.h │ ├── rpc_reg.h │ ├── rpc_samr.h │ ├── rpc_secdes.h │ ├── rpc_shutdown.h │ ├── rpc_spoolss.h │ ├── rpc_srvsvc.h │ ├── rpc_svcctl.h │ ├── rpc_wkssvc.h │ ├── safe_string.h │ ├── samba_linux_quota.h │ ├── samba_xfs_quota.h │ ├── secrets.h │ ├── session.h │ ├── smb.h │ ├── smb_acls.h │ ├── smb_ldap.h │ ├── smb_macros.h │ ├── smb_share_modes.h │ ├── smbldap.h │ ├── smbprofile.h │ ├── socket_wrapper.h │ ├── spnego.h │ ├── srvstr.h │ ├── stamp-h │ ├── stamp-h.in │ ├── sysquotas.h │ ├── talloc.h │ ├── trans2.h │ ├── util_getent.h │ ├── version.h │ ├── vfs.h │ ├── vfs_macros.h │ └── xfile.h │ ├── iniparser │ ├── AUTHORS │ ├── INSTALL │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── html │ │ ├── dir_000000.html │ │ ├── dirs.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── globals_func.html │ │ ├── index.html │ │ ├── iniparser_8h.html │ │ └── iniparser_8main.html │ ├── src │ │ ├── dictionary.c │ │ ├── dictionary.h │ │ ├── iniparser.c │ │ ├── iniparser.h │ │ ├── strlib.c │ │ └── strlib.h │ └── test │ │ ├── Makefile │ │ └── iniexample.c │ ├── install-sh │ ├── intl │ ├── lang_tdb.c │ └── linux-msg.sed │ ├── lib │ ├── access.c │ ├── account_pol.c │ ├── adt_tree.c │ ├── afs.c │ ├── afs_settoken.c │ ├── arc4.c │ ├── audit.c │ ├── bitmap.c │ ├── charcnv.c │ ├── clobber.c │ ├── crc32.c │ ├── data_blob.c │ ├── debug.c │ ├── display_sec.c │ ├── dmallocmsg.c │ ├── dprintf.c │ ├── dummyroot.c │ ├── dummysmbd.c │ ├── events.c │ ├── fault.c │ ├── fsusage.c │ ├── gencache.c │ ├── genrand.c │ ├── getsmbpass.c │ ├── hmacmd5.c │ ├── iconv.c │ ├── interface.c │ ├── interfaces.c │ ├── ldap_escape.c │ ├── md4.c │ ├── md5.c │ ├── messages.c │ ├── module.c │ ├── ms_fnmatch.c │ ├── pam_errors.c │ ├── pidfile.c │ ├── popt_common.c │ ├── privileges.c │ ├── readline.c │ ├── repdir.c │ ├── replace.c │ ├── replace1.c │ ├── secace.c │ ├── secacl.c │ ├── secdesc.c │ ├── select.c │ ├── sendfile.c │ ├── server_mutex.c │ ├── sharesec.c │ ├── signal.c │ ├── smbldap.c │ ├── smbldap_util.c │ ├── smbrun.c │ ├── snprintf.c │ ├── sock_exec.c │ ├── socket_wrapper.c │ ├── substitute.c │ ├── sysacls.c │ ├── sysquotas.c │ ├── sysquotas_4A.c │ ├── sysquotas_linux.c │ ├── sysquotas_xfs.c │ ├── system.c │ ├── system_smbd.c │ ├── talloc.c │ ├── tallocmsg.c │ ├── talloctort.c │ ├── time.c │ ├── timegm.c │ ├── ufc.c │ ├── username.c │ ├── util.c │ ├── util_file.c │ ├── util_nscd.c │ ├── util_pw.c │ ├── util_seaccess.c │ ├── util_sec.c │ ├── util_sid.c │ ├── util_sock.c │ ├── util_str.c │ ├── util_unistr.c │ ├── util_uuid.c │ ├── version.c │ ├── wins_srv.c │ └── xfile.c │ ├── libSmb.vcproj │ ├── libads │ ├── ads_status.c │ ├── ads_struct.c │ ├── ads_utils.c │ ├── authdata.c │ ├── cldap.c │ ├── disp_sec.c │ ├── dns.c │ ├── gpo.c │ ├── gpo_util.c │ ├── kerberos.c │ ├── kerberos_keytab.c │ ├── kerberos_verify.c │ ├── krb5_errs.c │ ├── krb5_setpw.c │ ├── ldap.c │ ├── ldap_printer.c │ ├── ldap_schema.c │ ├── ldap_user.c │ ├── ldap_utils.c │ ├── sasl.c │ └── util.c │ ├── libmsrpc │ ├── Doxyfile │ ├── cac_lsarpc.c │ ├── cac_samr.c │ ├── cac_svcctl.c │ ├── cac_winreg.c │ ├── libmsrpc.c │ └── libmsrpc_internal.c │ ├── libsmb │ ├── asn1.c │ ├── cliconnect.c │ ├── clidfs.c │ ├── clidgram.c │ ├── clientgen.c │ ├── clierror.c │ ├── clifile.c │ ├── clifsinfo.c │ ├── clikrb5.c │ ├── clilist.c │ ├── climessage.c │ ├── clioplock.c │ ├── cliprint.c │ ├── cliquota.c │ ├── clirap.c │ ├── clirap2.c │ ├── clireadwrite.c │ ├── clisecdesc.c │ ├── clispnego.c │ ├── clistr.c │ ├── clitrans.c │ ├── conncache.c │ ├── credentials.c │ ├── dcerpc_err.c │ ├── doserr.c │ ├── errormap.c │ ├── gpo.c │ ├── libsmb_cache.c │ ├── libsmb_compat.c │ ├── libsmbclient.c │ ├── namecache.c │ ├── namequery.c │ ├── namequery_dc.c │ ├── nmblib.c │ ├── nterr.c │ ├── ntlm_check.c │ ├── ntlmssp.c │ ├── ntlmssp_parse.c │ ├── ntlmssp_sign.c │ ├── passchange.c │ ├── pwd_cache.c │ ├── samlogon_cache.c │ ├── smb_share_modes.c │ ├── smb_signing.c │ ├── smbdes.c │ ├── smbencrypt.c │ ├── smberr.c │ ├── spnego.c │ ├── trustdom_cache.c │ ├── trusts_util.c │ └── unexpected.c │ ├── locking │ ├── brlock.c │ ├── locking.c │ └── posix.c │ ├── mainpage.dox │ ├── modules │ ├── CP437.c │ ├── CP850.c │ ├── charset_macosxfs.c │ ├── developer.c │ ├── getdate.c │ ├── getdate.h │ ├── getdate.y │ ├── vfs_afsacl.c │ ├── vfs_audit.c │ ├── vfs_cap.c │ ├── vfs_catia.c │ ├── vfs_default_quota.c │ ├── vfs_expand_msdfs.c │ ├── vfs_extd_audit.c │ ├── vfs_fake_perms.c │ ├── vfs_full_audit.c │ ├── vfs_netatalk.c │ ├── vfs_readonly.c │ ├── vfs_recycle.c │ ├── vfs_shadow_copy.c │ └── weird.c │ ├── nmbd │ ├── asyncdns.c │ ├── nmbd.c │ ├── nmbd_become_dmb.c │ ├── nmbd_become_lmb.c │ ├── nmbd_browserdb.c │ ├── nmbd_browsesync.c │ ├── nmbd_elections.c │ ├── nmbd_incomingdgrams.c │ ├── nmbd_incomingrequests.c │ ├── nmbd_lmhosts.c │ ├── nmbd_logonnames.c │ ├── nmbd_mynames.c │ ├── nmbd_namelistdb.c │ ├── nmbd_namequery.c │ ├── nmbd_nameregister.c │ ├── nmbd_namerelease.c │ ├── nmbd_nodestatus.c │ ├── nmbd_packets.c │ ├── nmbd_processlogon.c │ ├── nmbd_responserecordsdb.c │ ├── nmbd_sendannounce.c │ ├── nmbd_serverlistdb.c │ ├── nmbd_subnetdb.c │ ├── nmbd_synclists.c │ ├── nmbd_winsproxy.c │ ├── nmbd_winsserver.c │ └── nmbd_workgroupdb.c │ ├── nsswitch │ ├── pam_winbind.c │ ├── pam_winbind.h │ ├── wb_client.c │ ├── wb_common.c │ ├── wbinfo.c │ ├── winbind_client.h │ ├── winbind_nss.h │ ├── winbind_nss_aix.c │ ├── winbind_nss_config.h │ ├── winbind_nss_freebsd.c │ ├── winbind_nss_hpux.h │ ├── winbind_nss_irix.c │ ├── winbind_nss_irix.h │ ├── winbind_nss_linux.c │ ├── winbind_nss_linux.h │ ├── winbind_nss_solaris.c │ ├── winbind_nss_solaris.h │ ├── winbindd.c │ ├── winbindd.h │ ├── winbindd_ads.c │ ├── winbindd_async.c │ ├── winbindd_cache.c │ ├── winbindd_cm.c │ ├── winbindd_cred_cache.c │ ├── winbindd_creds.c │ ├── winbindd_dual.c │ ├── winbindd_group.c │ ├── winbindd_misc.c │ ├── winbindd_nss.h │ ├── winbindd_pam.c │ ├── winbindd_passdb.c │ ├── winbindd_proto.h │ ├── winbindd_reconnect.c │ ├── winbindd_rpc.c │ ├── winbindd_sid.c │ ├── winbindd_user.c │ ├── winbindd_util.c │ ├── winbindd_wins.c │ └── wins.c │ ├── pam_smbpass │ ├── CHANGELOG │ ├── INSTALL │ ├── README │ ├── TODO │ ├── general.h │ ├── pam_smb_acct.c │ ├── pam_smb_auth.c │ ├── pam_smb_passwd.c │ ├── samples │ │ ├── README │ │ ├── kdc-pdc │ │ ├── password-mature │ │ ├── password-migration │ │ └── password-sync │ ├── support.c │ └── support.h │ ├── param │ ├── loadparm.c │ └── params.c │ ├── passdb │ ├── login_cache.c │ ├── lookup_sid.c │ ├── machine_sid.c │ ├── passdb.c │ ├── pdb_compat.c │ ├── pdb_get_set.c │ ├── pdb_interface.c │ ├── pdb_ldap.c │ ├── pdb_nds.c │ ├── pdb_plugin.c │ ├── pdb_smbpasswd.c │ ├── pdb_tdb.c │ ├── secrets.c │ ├── util_builtin.c │ ├── util_unixsids.c │ └── util_wellknown.c │ ├── po │ ├── de.msg │ ├── en.msg │ ├── fr.msg │ ├── genmsg │ ├── it.msg │ ├── ja.msg │ ├── nl.msg │ ├── pl.msg │ └── tr.msg │ ├── popt │ ├── CHANGES │ ├── COPYING │ ├── README │ ├── dummy.in │ ├── findme.c │ ├── findme.h │ ├── popt.c │ ├── popt.h │ ├── poptconfig.c │ ├── popthelp.c │ ├── poptint.h │ ├── poptparse.c │ └── system.h │ ├── printing │ ├── load.c │ ├── lpq_parse.c │ ├── notify.c │ ├── nt_printing.c │ ├── pcap.c │ ├── print_aix.c │ ├── print_cups.c │ ├── print_generic.c │ ├── print_iprint.c │ ├── print_svid.c │ ├── printfsp.c │ ├── printing.c │ └── printing_db.c │ ├── profile │ └── profile.c │ ├── python │ ├── README │ ├── examples │ │ ├── spoolss │ │ │ ├── changeid.py │ │ │ ├── enumprinters.py │ │ │ └── psec.py │ │ └── tdbpack │ │ │ ├── oldtdbutil.py │ │ │ ├── tdbtimetrial.py │ │ │ └── test_tdbpack.py │ ├── gprinterdata │ ├── gtdbtool │ ├── gtkdictbrowser.py │ ├── py_common.c │ ├── py_common.h │ ├── py_conv.c │ ├── py_conv.h │ ├── py_lsa.c │ ├── py_lsa.h │ ├── py_ntsec.c │ ├── py_samr.c │ ├── py_samr.h │ ├── py_samr_conv.c │ ├── py_smb.c │ ├── py_smb.h │ ├── py_spoolss.c │ ├── py_spoolss.h │ ├── py_spoolss_common.c │ ├── py_spoolss_drivers.c │ ├── py_spoolss_drivers_conv.c │ ├── py_spoolss_forms.c │ ├── py_spoolss_forms_conv.c │ ├── py_spoolss_jobs.c │ ├── py_spoolss_jobs_conv.c │ ├── py_spoolss_ports.c │ ├── py_spoolss_ports_conv.c │ ├── py_spoolss_printerdata.c │ ├── py_spoolss_printers.c │ ├── py_spoolss_printers_conv.c │ ├── py_srvsvc.c │ ├── py_srvsvc.h │ ├── py_srvsvc_conv.c │ ├── py_tdb.c │ ├── py_tdb.h │ ├── py_tdbpack.c │ ├── py_winbind.c │ ├── py_winbind.h │ ├── py_winbind_conv.c │ ├── py_winreg.c │ ├── py_winreg.h │ ├── samba │ │ ├── __init__.py │ │ └── printerdata.py │ └── setup.py │ ├── registry │ ├── reg_cachehook.c │ ├── reg_db.c │ ├── reg_dynamic.c │ ├── reg_eventlog.c │ ├── reg_frontend.c │ ├── reg_objects.c │ ├── reg_perfcount.c │ ├── reg_printing.c │ ├── reg_shares.c │ ├── reg_util.c │ └── regfio.c │ ├── rpc_client │ ├── cli_dfs.c │ ├── cli_ds.c │ ├── cli_echo.c │ ├── cli_lsarpc.c │ ├── cli_netlogon.c │ ├── cli_pipe.c │ ├── cli_reg.c │ ├── cli_samr.c │ ├── cli_shutdown.c │ ├── cli_spoolss.c │ ├── cli_spoolss_notify.c │ ├── cli_srvsvc.c │ ├── cli_svcctl.c │ └── cli_wkssvc.c │ ├── rpc_parse │ ├── parse_buffer.c │ ├── parse_dfs.c │ ├── parse_ds.c │ ├── parse_echo.c │ ├── parse_eventlog.c │ ├── parse_lsa.c │ ├── parse_misc.c │ ├── parse_net.c │ ├── parse_ntsvcs.c │ ├── parse_prs.c │ ├── parse_reg.c │ ├── parse_rpc.c │ ├── parse_samr.c │ ├── parse_sec.c │ ├── parse_shutdown.c │ ├── parse_spoolss.c │ ├── parse_srv.c │ ├── parse_svcctl.c │ └── parse_wks.c │ ├── rpc_server │ ├── srv_dfs.c │ ├── srv_dfs_nt.c │ ├── srv_echo.c │ ├── srv_echo_nt.c │ ├── srv_eventlog.c │ ├── srv_eventlog_lib.c │ ├── srv_eventlog_nt.c │ ├── srv_lsa.c │ ├── srv_lsa_ds.c │ ├── srv_lsa_ds_nt.c │ ├── srv_lsa_hnd.c │ ├── srv_lsa_nt.c │ ├── srv_netlog.c │ ├── srv_netlog_nt.c │ ├── srv_ntsvcs.c │ ├── srv_ntsvcs_nt.c │ ├── srv_pipe.c │ ├── srv_pipe_hnd.c │ ├── srv_reg.c │ ├── srv_reg_nt.c │ ├── srv_samr.c │ ├── srv_samr_nt.c │ ├── srv_samr_util.c │ ├── srv_spoolss.c │ ├── srv_spoolss_nt.c │ ├── srv_srvsvc.c │ ├── srv_srvsvc_nt.c │ ├── srv_svcctl.c │ ├── srv_svcctl_nt.c │ ├── srv_util.c │ ├── srv_wkssvc.c │ └── srv_wkssvc_nt.c │ ├── rpcclient │ ├── cmd_dfs.c │ ├── cmd_ds.c │ ├── cmd_echo.c │ ├── cmd_lsarpc.c │ ├── cmd_netlogon.c │ ├── cmd_reg.c │ ├── cmd_samr.c │ ├── cmd_shutdown.c │ ├── cmd_spoolss.c │ ├── cmd_srvsvc.c │ ├── cmd_test.c │ ├── cmd_wkssvc.c │ ├── rpcclient.c │ └── rpcclient.h │ ├── sam │ ├── idmap.c │ ├── idmap_ad.c │ ├── idmap_ldap.c │ ├── idmap_rid.c │ ├── idmap_smbldap.c │ ├── idmap_tdb.c │ ├── idmap_util.c │ └── nss_info.c │ ├── script │ ├── build_env.sh │ ├── creategroup │ ├── extract_allparms.sh │ ├── findsmb │ ├── findsmb.in │ ├── findstatic.pl │ ├── gap.awk │ ├── gaptab.awk │ ├── gen-8bit-gap.awk │ ├── gen-8bit-gap.sh │ ├── gen-8bit-gap.sh.in │ ├── installbin.sh │ ├── installbin.sh.in │ ├── installdat.sh │ ├── installdirs.sh │ ├── installman.sh │ ├── installmodules.sh │ ├── installmsg.sh │ ├── installscripts.sh │ ├── installswat.sh │ ├── linkmodules.sh │ ├── makeunicodecasemap.awk │ ├── mkbuildoptions.awk │ ├── mkinstalldirs │ ├── mknissmbpasswd.sh │ ├── mknissmbpwdtbl.sh │ ├── mkproto.awk │ ├── mkproto.sh │ ├── mksmbpasswd.sh │ ├── mkversion.sh │ ├── revert.sh │ ├── scancvslog.pl │ ├── smbtar │ ├── tests │ │ ├── dlopen.sh │ │ ├── gdb_backtrace │ │ ├── selftest.sh │ │ ├── test_functions.sh │ │ ├── test_posix_s3.sh │ │ ├── test_smbclient_s3.sh │ │ ├── test_smbtorture_s3.sh │ │ ├── tests_all.sh │ │ ├── tests_smbclient_s3.sh │ │ └── timelimit.c │ ├── uninstallbin.sh │ ├── uninstallbin.sh.in │ ├── uninstalldat.sh │ ├── uninstallman.sh │ ├── uninstallmodules.sh │ ├── uninstallmsg.sh │ ├── uninstallscripts.sh │ ├── uninstallswat.sh │ └── updatesmbpasswd.sh │ ├── services │ ├── services_db.c │ ├── svc_netlogon.c │ ├── svc_rcinit.c │ ├── svc_spoolss.c │ ├── svc_winreg.c │ └── svc_wins.c │ ├── smbadduser │ ├── smbadduser.in │ ├── smbd │ ├── aio.c │ ├── blocking.c │ ├── build_options.c │ ├── change_trust_pw.c │ ├── chgpasswd.c │ ├── close.c │ ├── conn.c │ ├── connection.c │ ├── dfree.c │ ├── dir.c │ ├── dmapi.c │ ├── dosmode.c │ ├── error.c │ ├── fake_file.c │ ├── fileio.c │ ├── filename.c │ ├── files.c │ ├── ipc.c │ ├── lanman.c │ ├── mangle.c │ ├── mangle_hash.c │ ├── mangle_hash2.c │ ├── mangle_map.c │ ├── map_username.c │ ├── message.c │ ├── msdfs.c │ ├── negprot.c │ ├── noquotas.c │ ├── notify.c │ ├── notify_fam.c │ ├── notify_hash.c │ ├── notify_kernel.c │ ├── ntquotas.c │ ├── nttrans.c │ ├── open.c │ ├── oplock.c │ ├── oplock_irix.c │ ├── oplock_linux.c │ ├── password.c │ ├── pipes.c │ ├── posix_acls.c │ ├── process.c │ ├── quotas.c │ ├── reply.c │ ├── sec_ctx.c │ ├── server.c │ ├── service.c │ ├── session.c │ ├── sesssetup.c │ ├── share_access.c │ ├── srvstr.c │ ├── statcache.c │ ├── statvfs.c │ ├── trans2.c │ ├── uid.c │ ├── utmp.c │ ├── vfs-wrap.c │ └── vfs.c │ ├── smbwrapper │ ├── PORTING │ ├── README │ ├── realcalls.c │ ├── realcalls.h │ ├── shared.c │ ├── smbsh.c │ ├── smbsh.in │ ├── smbw.c │ ├── smbw.h │ ├── smbw_cache.c │ ├── smbw_dir.c │ ├── smbw_stat.c │ └── wrapped.c │ ├── stf │ ├── README.stf │ ├── comfychair.py │ ├── example.py │ ├── info3cache.py │ ├── notes.txt │ ├── osver.py │ ├── pythoncheck.py │ ├── sambalib.py │ ├── smbcontrol.py │ ├── spoolss.py │ ├── standardcheck.py │ ├── stf.py │ ├── strings.py │ ├── test.py │ └── unicodenames.py │ ├── tdb │ ├── Makefile │ ├── README │ ├── spinlock.c │ ├── spinlock.h │ ├── tdb.c │ ├── tdb.h │ ├── tdb.magic │ ├── tdbback.c │ ├── tdbback.h │ ├── tdbbackup.c │ ├── tdbdump.c │ ├── tdbtest.c │ ├── tdbtool.c │ ├── tdbtorture.c │ ├── tdbutil.c │ └── tdbutil.h │ ├── tests │ ├── README │ ├── crypttest.c │ ├── fcntl_lock.c │ ├── fcntl_lock64.c │ ├── ftruncate.c │ ├── getgroups.c │ ├── os2_delete.c │ ├── shared_mmap.c │ ├── shlib.c │ ├── summary.c │ ├── sysquotas.c │ ├── trivial.c │ └── unixsock.c │ ├── torture │ ├── cmd_vfs.c │ ├── denytest.c │ ├── locktest.c │ ├── locktest2.c │ ├── mangle_test.c │ ├── masktest.c │ ├── msgtest.c │ ├── nbio.c │ ├── nsstest.c │ ├── rpctorture.c │ ├── samtest.h │ ├── scanner.c │ ├── smbiconv.c │ ├── t_asn1.c │ ├── t_doschar.c │ ├── t_push_ucs2.c │ ├── t_strappend.c │ ├── t_strcmp.c │ ├── t_stringoverflow.c │ ├── t_strstr.c │ ├── torture.c │ ├── utable.c │ ├── vfstest.c │ └── vfstest.h │ ├── utils │ ├── debug2html.c │ ├── debugparse.c │ ├── eventlogadm.c │ ├── log2pcaphex.c │ ├── net.c │ ├── net.h │ ├── net_ads.c │ ├── net_ads_gpo.c │ ├── net_cache.c │ ├── net_domain.c │ ├── net_groupmap.c │ ├── net_help.c │ ├── net_idmap.c │ ├── net_lookup.c │ ├── net_proto.h │ ├── net_rap.c │ ├── net_rpc.c │ ├── net_rpc_audit.c │ ├── net_rpc_join.c │ ├── net_rpc_printer.c │ ├── net_rpc_registry.c │ ├── net_rpc_rights.c │ ├── net_rpc_samsync.c │ ├── net_rpc_service.c │ ├── net_rpc_sh_acct.c │ ├── net_rpc_shell.c │ ├── net_sam.c │ ├── net_status.c │ ├── net_time.c │ ├── net_usershare.c │ ├── net_util.c │ ├── netlookup.c │ ├── nmblookup.c │ ├── ntlm_auth.c │ ├── ntlm_auth.h │ ├── ntlm_auth_diagnostics.c │ ├── ntlm_auth_proto.h │ ├── passwd_proto.h │ ├── passwd_util.c │ ├── pdbedit.c │ ├── profiles.c │ ├── rpccheck.c │ ├── smbcacls.c │ ├── smbcontrol.c │ ├── smbcquotas.c │ ├── smbfilter.c │ ├── smbget.c │ ├── smbpasswd.c │ ├── smbtree.c │ ├── smbw_sample.c │ ├── status.c │ └── testparm.c │ ├── web │ ├── cgi.c │ ├── diagnose.c │ ├── neg_lang.c │ ├── startstop.c │ ├── statuspage.c │ ├── swat.c │ └── swat_proto.h │ └── xbox │ ├── dirent.c │ ├── dirent.h │ ├── iconv.h │ ├── readme.txt │ ├── xbLibSmb.h │ ├── xb_defines.h │ ├── xb_socketutil.c │ ├── xb_socketutil.h │ ├── xb_util.c │ └── xb_util.h ├── README.md └── Skins ├── Default ├── Achievements.xui ├── Achievements.xur ├── Audio │ ├── HUD_close.xma │ ├── HUD_open.xma │ ├── NotifyPopup.xma │ ├── a-button.xma │ ├── anim.xma │ ├── b-Button.xma │ ├── btn_Back.xma │ ├── btn_Focus.xma │ ├── btn_InactiveFocus.xma │ ├── btn_InactiveSelect.xma │ ├── btn_Select.xma │ ├── btn_backG.xma │ ├── btn_focusG.xma │ ├── btn_selectG.xma │ ├── click or list 2.xma │ ├── click or select.xma │ ├── credits.xma │ ├── dl_complete.xma │ ├── flyout.xma │ ├── longwhish.xma │ ├── quicktab.xma │ ├── snd_buttonback.xma │ ├── snd_buttonselect.xma │ ├── snd_channeldown.xma │ ├── snd_channelup.xma │ ├── snd_panelfold.xma │ ├── snd_panelleft.xma │ ├── snd_panelright.xma │ ├── snd_panelunfold.xma │ ├── snd_transitionfrom.xma │ ├── snd_transitioninto.xma │ ├── tab_Switch.xma │ ├── tabintro.xma │ ├── tabswitch.xma │ ├── tabswitch2.xma │ ├── vk_Focus.xma │ ├── vk_Select.xma │ └── whish.xma ├── ChooseSkins.xui ├── ChooseSkins.xur ├── CopyDVD.xui ├── CopyDVD.xur ├── DualPane.xui ├── DualPane.xur ├── GameControls.xui ├── GameControls.xur ├── GetCredentials.xui ├── GetCredentials.xur ├── Images │ ├── Backdrop_Reflection.png │ ├── Background Panel.png │ ├── Background PanelAlt.png │ ├── Background Reflection.png │ ├── Background Shadow.png │ ├── Backgrounds │ │ ├── NXE Background Rings │ │ │ ├── bg_ring1.png │ │ │ ├── bg_ring2.png │ │ │ ├── bg_ring3.png │ │ │ └── bg_ring4.png │ │ ├── Stages │ │ │ ├── Previews │ │ │ │ ├── preview1.png │ │ │ │ ├── preview2.png │ │ │ │ ├── preview3.png │ │ │ │ └── preview4.png │ │ │ ├── stage.png │ │ │ ├── stage2.png │ │ │ ├── stage3.png │ │ │ └── stage4.png │ │ └── Wallpapers │ │ │ ├── Previews │ │ │ ├── kinect_preview.png │ │ │ ├── kinectblue_preview.png │ │ │ ├── preview1.png │ │ │ ├── preview10.png │ │ │ ├── preview11.png │ │ │ ├── preview12.png │ │ │ ├── preview13.png │ │ │ ├── preview2.png │ │ │ ├── preview3.png │ │ │ ├── preview4.png │ │ │ ├── preview5.png │ │ │ ├── preview6.png │ │ │ ├── preview7.png │ │ │ ├── preview8.png │ │ │ └── preview9.png │ │ │ ├── bkg_wallpaper.png │ │ │ ├── bkg_wallpaper_10.png │ │ │ ├── bkg_wallpaper_11.png │ │ │ ├── bkg_wallpaper_12.png │ │ │ ├── bkg_wallpaper_13.png │ │ │ ├── bkg_wallpaper_2.png │ │ │ ├── bkg_wallpaper_3.png │ │ │ ├── bkg_wallpaper_4.png │ │ │ ├── bkg_wallpaper_5.png │ │ │ ├── bkg_wallpaper_6.png │ │ │ ├── bkg_wallpaper_7.png │ │ │ ├── bkg_wallpaper_8.png │ │ │ ├── bkg_wallpaper_9.png │ │ │ ├── kinect_wallpaper.PNG │ │ │ └── kinectblue_wallpaper.png │ ├── Interface │ │ ├── Button Icons │ │ │ ├── ButtonRing.png │ │ │ ├── LB.png │ │ │ ├── LB_Glow.png │ │ │ ├── Legend_A.png │ │ │ ├── Legend_B.png │ │ │ ├── Legend_X.png │ │ │ ├── Legend_Y.png │ │ │ ├── RB.png │ │ │ ├── RB_glow.png │ │ │ ├── TL.png │ │ │ ├── TL_Glow.png │ │ │ ├── TR.png │ │ │ ├── TR_Glow.png │ │ │ ├── a.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── b.png │ │ │ ├── back.png │ │ │ ├── d_pad_glow.png │ │ │ ├── down.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ ├── start.png │ │ │ ├── start_back_glow.png │ │ │ ├── stick_Glow.png │ │ │ ├── stick_left.png │ │ │ ├── stick_right.png │ │ │ ├── up.png │ │ │ ├── x.png │ │ │ └── y.png │ │ ├── Content Tabs │ │ │ ├── Content Shadow.png │ │ │ └── ContentTabData │ │ │ │ ├── Animations │ │ │ │ └── Animation 1 │ │ │ │ │ └── Images │ │ │ │ │ ├── ring1.png │ │ │ │ │ ├── ring2.png │ │ │ │ │ ├── ring3.png │ │ │ │ │ └── ring4.png │ │ │ │ └── Visuals │ │ │ │ ├── Black │ │ │ │ ├── Backgrounds │ │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ │ └── Content_Bkg_Template.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── Dvd.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── Blue │ │ │ │ ├── Backgrounds │ │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ │ └── Content_Bkg_Template.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── Dvd.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── DarkGrey │ │ │ │ ├── Backgrounds │ │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ │ └── Content_Bkg_Template.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── Dvd.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── Green │ │ │ │ ├── Backgrounds │ │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ │ └── Content_Bkg_Template.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── Dvd.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── Kinect │ │ │ │ ├── Backgrounds │ │ │ │ │ └── kinect_1.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── DVD.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiMetrics.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── ScreenshotManager.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── TrainerManager.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── KinectBlue │ │ │ │ ├── Backgrounds │ │ │ │ │ └── kinectblue_1.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── LightGrey │ │ │ │ ├── Backgrounds │ │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ │ └── Content_Bkg_Templte.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── Dvd.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ ├── Orange │ │ │ │ ├── Backgrounds │ │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ │ └── Content_Bkg_Template.png │ │ │ │ ├── Icons │ │ │ │ │ ├── About.png │ │ │ │ │ ├── CopyDVD.png │ │ │ │ │ ├── Dvd.png │ │ │ │ │ ├── Emulators.png │ │ │ │ │ ├── FSDPlugIn.png │ │ │ │ │ ├── Favs.png │ │ │ │ │ ├── FileManager.png │ │ │ │ │ ├── Homebrew.png │ │ │ │ │ ├── KaiArena.png │ │ │ │ │ ├── KaiBuddy.png │ │ │ │ │ ├── KaiChat.png │ │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ │ ├── MyMusic.png │ │ │ │ │ ├── MyPictures.png │ │ │ │ │ ├── MyVideos.png │ │ │ │ │ ├── Nand.png │ │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ │ ├── Settings.png │ │ │ │ │ ├── Skins.png │ │ │ │ │ ├── System.png │ │ │ │ │ ├── Weather.png │ │ │ │ │ ├── XBLA.png │ │ │ │ │ ├── Xbox1.png │ │ │ │ │ ├── Xbox360.png │ │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ │ └── BkgReflection.png │ │ │ │ └── Red │ │ │ │ ├── Backgrounds │ │ │ │ ├── Content_Bkg_1.png │ │ │ │ ├── Content_Bkg_2.png │ │ │ │ ├── Content_Bkg_3.png │ │ │ │ ├── Content_Bkg_4.png │ │ │ │ ├── Content_Bkg_5.png │ │ │ │ ├── Content_Bkg_6.png │ │ │ │ ├── Content_Bkg_7.png │ │ │ │ ├── Content_Bkg_8.png │ │ │ │ └── Content_Bkg_Template.png │ │ │ │ ├── Icons │ │ │ │ ├── About.png │ │ │ │ ├── CopyDVD.png │ │ │ │ ├── Dvd.png │ │ │ │ ├── Emulators.png │ │ │ │ ├── FSDPlugIn.png │ │ │ │ ├── Favs.png │ │ │ │ ├── FileManager.png │ │ │ │ ├── Homebrew.png │ │ │ │ ├── KaiArena.png │ │ │ │ ├── KaiBuddy.png │ │ │ │ ├── KaiChat.png │ │ │ │ ├── KaiPlayOnline.png │ │ │ │ ├── MyMusic.png │ │ │ │ ├── MyPictures.png │ │ │ │ ├── MyVideos.png │ │ │ │ ├── Nand.png │ │ │ │ ├── RecentlyPlayed.png │ │ │ │ ├── Settings.png │ │ │ │ ├── Skins.png │ │ │ │ ├── System.png │ │ │ │ ├── Weather.png │ │ │ │ ├── XBLA.png │ │ │ │ ├── Xbox1.png │ │ │ │ ├── Xbox360.png │ │ │ │ └── XlinkKai.png │ │ │ │ └── Reflections │ │ │ │ └── BkgReflection.png │ │ ├── Dash Artwork │ │ │ ├── AvatarSilhouette.png │ │ │ ├── BoxArtBorder.png │ │ │ ├── CornerMask.png │ │ │ ├── FSD Orb │ │ │ │ ├── FSDOrb Rings.png │ │ │ │ ├── FSDOrb.png │ │ │ │ ├── KaiOrb │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ ├── Base.png │ │ │ │ │ └── live.PNG │ │ │ │ ├── OrbShadow.png │ │ │ │ ├── SphereHighlight.png │ │ │ │ ├── TestGlow.png │ │ │ │ └── TestOrb.png │ │ │ ├── GScore.png │ │ │ ├── GamerScore.png │ │ │ ├── Grid_Horizontal.png │ │ │ ├── Grid_Vertical.png │ │ │ ├── HDD Bar │ │ │ │ ├── HddBar.png │ │ │ │ ├── HddBar2.png │ │ │ │ ├── bar_test.png │ │ │ │ ├── prog_end.png │ │ │ │ ├── prog_left.png │ │ │ │ └── prog_main.png │ │ │ ├── MobyChannelZero.png │ │ │ ├── NoDVDInserted.png │ │ │ ├── RssMask.png │ │ │ ├── SS_Thumb_Mask.png │ │ │ ├── TWC.png │ │ │ ├── Temp Bar │ │ │ │ ├── TempBar.png │ │ │ │ ├── TempBarGreen.png │ │ │ │ ├── TempBarRed.png │ │ │ │ └── TempBarYellow.png │ │ │ ├── avatarshadow.png │ │ │ ├── ico_32x_BuiltInMU.png │ │ │ ├── ico_32x_HD.png │ │ │ ├── ico_32x_MU.png │ │ │ ├── ico_32x_console.png │ │ │ ├── ico_32x_network.png │ │ │ ├── ico_64x_Adhoc.png │ │ │ ├── ico_64x_Console.png │ │ │ ├── ico_64x_HD.png │ │ │ ├── ico_64x_Infrastructure.png │ │ │ ├── ico_64x_MU.png │ │ │ ├── ico_64x_NoThumbnail.png │ │ │ ├── ico_64x_PC_white.png │ │ │ ├── ico_64x_Reading.png │ │ │ ├── ico_64x_Trailers.png │ │ │ ├── ico_64x_music.png │ │ │ ├── ico_64x_profiles.png │ │ │ ├── ico_64x_skins.png │ │ │ ├── ico_96x_USB.png │ │ │ └── ico_96x_Video.png │ │ ├── List Icons │ │ │ ├── Videos.png │ │ │ ├── checkselect.png │ │ │ ├── downdefault.png │ │ │ ├── downfocus.png │ │ │ ├── updefault.png │ │ │ └── upfocus.png │ │ ├── ListImages │ │ │ ├── AchievementList │ │ │ │ └── Locked.png │ │ │ ├── FileList │ │ │ │ ├── Selected │ │ │ │ │ ├── selectedFile.png │ │ │ │ │ └── selectedFolder.png │ │ │ │ └── Standard │ │ │ │ │ ├── standardFile.png │ │ │ │ │ └── standardFolder.png │ │ │ ├── GameList │ │ │ │ ├── Loading │ │ │ │ │ ├── loadingBanner.dds │ │ │ │ │ ├── loadingBoxart.dds │ │ │ │ │ ├── loadingIcon.dds │ │ │ │ │ └── loadingScreenshot.dds │ │ │ │ ├── Missing │ │ │ │ │ ├── missingBanner.dds │ │ │ │ │ ├── missingBoxart.dds │ │ │ │ │ ├── missingIcon.dds │ │ │ │ │ └── missingScreenshot.dds │ │ │ │ └── Stars │ │ │ │ │ ├── starFavorite.dds │ │ │ │ │ ├── starRating0.dds │ │ │ │ │ ├── starRating1.dds │ │ │ │ │ ├── starRating2.dds │ │ │ │ │ ├── starRating3.dds │ │ │ │ │ └── starRating4.dds │ │ │ ├── TUList │ │ │ │ ├── Active │ │ │ │ │ └── TUActive.png │ │ │ │ └── Disabled │ │ │ │ │ └── TUDisabled.png │ │ │ └── XLinkKai │ │ │ │ ├── ArenaList │ │ │ │ └── NoAvatar.png │ │ │ │ └── PlayerList │ │ │ │ ├── BlankAvatar.png │ │ │ │ └── PlayerIcon.png │ │ ├── Media │ │ │ └── Video Player │ │ │ │ ├── ico_32x_FF.png │ │ │ │ ├── ico_32x_RR.png │ │ │ │ ├── ico_32x_aspect.png │ │ │ │ ├── ico_32x_info.png │ │ │ │ ├── ico_32x_last.png │ │ │ │ ├── ico_32x_next.png │ │ │ │ ├── ico_32x_no_sound.png │ │ │ │ ├── ico_32x_pause_black.png │ │ │ │ ├── ico_32x_play_black.png │ │ │ │ ├── ico_32x_sound.png │ │ │ │ ├── ico_32x_stop.png │ │ │ │ └── ico_32x_subtitles.png │ │ └── Weather │ │ │ ├── Moons │ │ │ ├── 0.dds │ │ │ ├── 1.dds │ │ │ ├── 10.dds │ │ │ ├── 11.dds │ │ │ ├── 12.dds │ │ │ ├── 13.dds │ │ │ ├── 14.dds │ │ │ ├── 15.dds │ │ │ ├── 16.dds │ │ │ ├── 17.dds │ │ │ ├── 18.dds │ │ │ ├── 19.dds │ │ │ ├── 2.dds │ │ │ ├── 20.dds │ │ │ ├── 21.dds │ │ │ ├── 22.dds │ │ │ ├── 23.dds │ │ │ ├── 24.dds │ │ │ ├── 25.dds │ │ │ ├── 26.dds │ │ │ ├── 27.dds │ │ │ ├── 28.dds │ │ │ ├── 29.dds │ │ │ ├── 3.dds │ │ │ ├── 4.dds │ │ │ ├── 5.dds │ │ │ ├── 6.dds │ │ │ ├── 7.dds │ │ │ ├── 8.dds │ │ │ └── 9.dds │ │ │ └── Type │ │ │ ├── 0.dds │ │ │ ├── 1.dds │ │ │ ├── 10.dds │ │ │ ├── 11.dds │ │ │ ├── 12.dds │ │ │ ├── 13.dds │ │ │ ├── 14.dds │ │ │ ├── 15.dds │ │ │ ├── 16.dds │ │ │ ├── 17.dds │ │ │ ├── 18.dds │ │ │ ├── 19.dds │ │ │ ├── 2.dds │ │ │ ├── 20.dds │ │ │ ├── 21.dds │ │ │ ├── 22.dds │ │ │ ├── 23.dds │ │ │ ├── 24.dds │ │ │ ├── 25.dds │ │ │ ├── 26.dds │ │ │ ├── 27.dds │ │ │ ├── 28.dds │ │ │ ├── 29.dds │ │ │ ├── 3.dds │ │ │ ├── 30.dds │ │ │ ├── 31.dds │ │ │ ├── 32.dds │ │ │ ├── 33.dds │ │ │ ├── 34.dds │ │ │ ├── 35.dds │ │ │ ├── 36.dds │ │ │ ├── 37.dds │ │ │ ├── 38.dds │ │ │ ├── 39.dds │ │ │ ├── 4.dds │ │ │ ├── 40.dds │ │ │ ├── 41.dds │ │ │ ├── 42.dds │ │ │ ├── 43.dds │ │ │ ├── 44.dds │ │ │ ├── 45.dds │ │ │ ├── 46.dds │ │ │ ├── 47.dds │ │ │ ├── 5.dds │ │ │ ├── 6.dds │ │ │ ├── 7.dds │ │ │ ├── 8.dds │ │ │ └── 9.dds │ └── blacksquare.png ├── PathManager.xui ├── PathManager.xur ├── Settings │ ├── MenuSettings.xml │ └── SkinSettings.xml ├── Settings_Content.xui ├── Settings_Content.xur ├── Settings_General.xui ├── Settings_General.xur ├── Settings_Kai.xui ├── Settings_Kai.xur ├── Settings_Main.xui ├── Settings_Main.xur ├── Settings_System.xui ├── Settings_System.xur ├── TeamFSD.xui ├── TeamFSD.xur ├── TitleUpdateManager.xui ├── TitleUpdateManager.xur ├── Trainers.xui ├── Trainers.xur ├── Wait.xui ├── Wait.xur ├── Weather.xui ├── Weather.xur ├── XML │ ├── BkgListA.xml │ ├── BkgListB.xml │ ├── BlackVisual.xml │ ├── BlueVisual.xml │ ├── DarkGreyVisual.xml │ ├── GreenVisual.xml │ ├── KinectBlueVisual.xml │ ├── KinectVisual.xml │ ├── LightGreyVisual.xml │ ├── OrangeVisual.xml │ ├── RedVisual.xml │ └── VisualList.xml ├── XlinkKaiArena.xui ├── XlinkKaiArena.xur ├── XlinkKaiChat.xui ├── XlinkKaiChat.xur ├── XlinkKaiHost.xui ├── XlinkKaiHost.xur ├── XlinkKaiPlayerInfo.xui ├── XlinkKaiPlayerInfo.xur ├── XlinkKaiSignIn.xui ├── XlinkKaiSignIn.xur ├── canvasconfig.xui ├── canvasconfig.xur ├── customizetab.xui ├── customizetab.xur ├── devIcon.png ├── filemanager.xui ├── filemanager.xur ├── gamelist.xui ├── gamelist.xur ├── gamelist_banners.xui ├── gamelist_banners.xur ├── gamelist_cover.xui ├── gamelist_cover.xur ├── gamelist_icon.xui ├── gamelist_icon.xur ├── main.xui ├── main.xur ├── menuconfig.xui ├── menuconfig.xur ├── options.xui ├── options.xur ├── preview.png ├── savedgames.xui ├── savedgames.xur ├── screenshots.xui ├── screenshots.xur ├── skin.extract ├── skin.ver ├── skin.xml ├── skin.xui ├── skin.xur ├── temp.xui ├── updater.xui ├── updater.xur └── wwwroot │ ├── css │ ├── FSD.css │ ├── Slideshow.css │ ├── default.css │ ├── default.ultimate.css │ ├── dropdown.css │ ├── helper.css │ └── images │ │ ├── comnav-arrowon.png │ │ ├── comnav-arrowover.png │ │ ├── comnav-arrowover2.png │ │ ├── grad1.png │ │ ├── nav-arrow-right.png │ │ ├── nav-arrow-right2.png │ │ └── nav-sub-press.png │ ├── gamedetails.html │ ├── gamelist.html │ ├── gamelistentry.inc │ ├── gamelistloadingentry.inc │ ├── images │ ├── FSD_Logo.png │ ├── arrow_left.png │ ├── arrow_right.png │ ├── gamerCard │ │ ├── gamerscore.png │ │ ├── gamerscore_bg.png │ │ ├── icon_bg.png │ │ ├── info1_bg.png │ │ ├── info2_bg.png │ │ ├── padding_bottom.png │ │ ├── padding_left.png │ │ ├── padding_top.png │ │ └── top.png │ ├── loadingBackground.png │ ├── loadingBanner.png │ ├── loadingBoxart.png │ ├── loadingIcon.png │ ├── missingBackground.png │ ├── missingBanner.png │ ├── missingBoxart.png │ ├── missingIcon.png │ └── spacer.gif │ ├── index.html │ ├── js │ └── jquery │ │ ├── Slideshow.js │ │ ├── jquery.dropdown.js │ │ └── jquery.js │ ├── login.html │ ├── pathentry.inc │ ├── paths.html │ ├── screenshotentry.inc │ ├── screenshotloadingentry.inc │ └── screenshots.html └── versioner.exe /Freestyle/CXuiWaitList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/CXuiWaitList.cpp -------------------------------------------------------------------------------- /Freestyle/CXuiWaitList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/CXuiWaitList.h -------------------------------------------------------------------------------- /Freestyle/Freestyle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Freestyle.vcproj -------------------------------------------------------------------------------- /Freestyle/FreestyleDash.spa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/FreestyleDash.spa -------------------------------------------------------------------------------- /Freestyle/FreestyleDash.spa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/FreestyleDash.spa.h -------------------------------------------------------------------------------- /Freestyle/FreestyleDash.xlast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/FreestyleDash.xlast -------------------------------------------------------------------------------- /Freestyle/Media/nxeart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Media/nxeart -------------------------------------------------------------------------------- /Freestyle/Scenes/Main/ScnMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Scenes/Main/ScnMain.h -------------------------------------------------------------------------------- /Freestyle/Scenes/Profile/ScnProfileTab.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Freestyle/Scenes/Wait/ScnWait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Scenes/Wait/ScnWait.h -------------------------------------------------------------------------------- /Freestyle/SkinManagerSpecs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/SkinManagerSpecs.txt -------------------------------------------------------------------------------- /Freestyle/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/TODO.txt -------------------------------------------------------------------------------- /Freestyle/Tools/AES/Rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/AES/Rijndael.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/AES/Rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/AES/Rijndael.h -------------------------------------------------------------------------------- /Freestyle/Tools/Debug/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Debug/Debug.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/Debug/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Debug/Debug.h -------------------------------------------------------------------------------- /Freestyle/Tools/FTP/FTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/FTP/FTPServer.h -------------------------------------------------------------------------------- /Freestyle/Tools/Generic/CRC_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Generic/CRC_32.h -------------------------------------------------------------------------------- /Freestyle/Tools/Generic/PNG/PNGTools.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Freestyle/Tools/Generic/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Generic/Tools.h -------------------------------------------------------------------------------- /Freestyle/Tools/HTTP/HttpItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/HTTP/HttpItem.h -------------------------------------------------------------------------------- /Freestyle/Tools/Managers/Theme/MenuManager/MenuManager.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Freestyle/Tools/Managers/Theme/MenuManager/MenuManager.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Freestyle/Tools/NTP/NTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/NTP/NTP.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/NTP/NTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/NTP/NTP.h -------------------------------------------------------------------------------- /Freestyle/Tools/PKZip/PkZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/PKZip/PkZip.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/PKZip/PkZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/PKZip/PkZip.h -------------------------------------------------------------------------------- /Freestyle/Tools/Queue/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Queue/Queue.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/Queue/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Queue/Queue.h -------------------------------------------------------------------------------- /Freestyle/Tools/SMC/smc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SMC/smc.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/SMC/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SMC/smc.h -------------------------------------------------------------------------------- /Freestyle/Tools/SQLite/FSDSql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SQLite/FSDSql.h -------------------------------------------------------------------------------- /Freestyle/Tools/SQLite/Sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SQLite/Sql.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/SQLite/Sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SQLite/Sql.h -------------------------------------------------------------------------------- /Freestyle/Tools/SQLite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SQLite/sqlite3.c -------------------------------------------------------------------------------- /Freestyle/Tools/SQLite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/SQLite/sqlite3.h -------------------------------------------------------------------------------- /Freestyle/Tools/Streams/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/Streams/Stream.h -------------------------------------------------------------------------------- /Freestyle/Tools/XEX/SPA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/XEX/SPA.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/XEX/SPA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/XEX/SPA.h -------------------------------------------------------------------------------- /Freestyle/Tools/XEX/XeXtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/XEX/XeXtractor.h -------------------------------------------------------------------------------- /Freestyle/Tools/XFSD/XFSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/XFSD/XFSD.cpp -------------------------------------------------------------------------------- /Freestyle/Tools/XFSD/XFSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/XFSD/XFSD.h -------------------------------------------------------------------------------- /Freestyle/Tools/XML/xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/Tools/XML/xmlreader.h -------------------------------------------------------------------------------- /Freestyle/dashversion.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/dashversion.tmpl -------------------------------------------------------------------------------- /Freestyle/dashversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/dashversion.txt -------------------------------------------------------------------------------- /Freestyle/dashversion.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/dashversion.ver -------------------------------------------------------------------------------- /Freestyle/embedfont.xpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/embedfont.xpr -------------------------------------------------------------------------------- /Freestyle/fsdbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/fsdbanner.png -------------------------------------------------------------------------------- /Freestyle/fsdicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/fsdicon.png -------------------------------------------------------------------------------- /Freestyle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/main.cpp -------------------------------------------------------------------------------- /Freestyle/nxeart.xlast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/nxeart.xlast -------------------------------------------------------------------------------- /Freestyle/skinversion.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/skinversion.tmpl -------------------------------------------------------------------------------- /Freestyle/skinversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/skinversion.txt -------------------------------------------------------------------------------- /Freestyle/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/stdafx.cpp -------------------------------------------------------------------------------- /Freestyle/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/stdafx.h -------------------------------------------------------------------------------- /Freestyle/supprotedgames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/supprotedgames.txt -------------------------------------------------------------------------------- /Freestyle/svnrevision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/svnrevision.cpp -------------------------------------------------------------------------------- /Freestyle/teamfsd.xfsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/teamfsd.xfsd -------------------------------------------------------------------------------- /Freestyle/versioner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/versioner.exe -------------------------------------------------------------------------------- /Freestyle/xex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Freestyle/xex.xml -------------------------------------------------------------------------------- /FreestyleDashNoPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/FreestyleDashNoPlugin.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libs/libiconv/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/ABOUT-NLS -------------------------------------------------------------------------------- /Libs/libiconv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/AUTHORS -------------------------------------------------------------------------------- /Libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/COPYING -------------------------------------------------------------------------------- /Libs/libiconv/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/COPYING.LIB -------------------------------------------------------------------------------- /Libs/libiconv/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/ChangeLog -------------------------------------------------------------------------------- /Libs/libiconv/DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/DEPENDENCIES -------------------------------------------------------------------------------- /Libs/libiconv/DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/DESIGN -------------------------------------------------------------------------------- /Libs/libiconv/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/HACKING -------------------------------------------------------------------------------- /Libs/libiconv/INSTALL.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/INSTALL.generic -------------------------------------------------------------------------------- /Libs/libiconv/Makefile.devel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/Makefile.devel -------------------------------------------------------------------------------- /Libs/libiconv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/Makefile.in -------------------------------------------------------------------------------- /Libs/libiconv/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/NEWS -------------------------------------------------------------------------------- /Libs/libiconv/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/NOTES -------------------------------------------------------------------------------- /Libs/libiconv/PORTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/PORTS -------------------------------------------------------------------------------- /Libs/libiconv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/README -------------------------------------------------------------------------------- /Libs/libiconv/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /Libs/libiconv/README.woe32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/README.woe32 -------------------------------------------------------------------------------- /Libs/libiconv/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/THANKS -------------------------------------------------------------------------------- /Libs/libiconv/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/aclocal.m4 -------------------------------------------------------------------------------- /Libs/libiconv/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/autogen.sh -------------------------------------------------------------------------------- /Libs/libiconv/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/build-aux/missing -------------------------------------------------------------------------------- /Libs/libiconv/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/config.h.in -------------------------------------------------------------------------------- /Libs/libiconv/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/configure -------------------------------------------------------------------------------- /Libs/libiconv/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/configure.ac -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/README -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/README.in -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/config.bat -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/config.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/config.sed -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/config.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/config.site -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/edtest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/edtest.bat -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/fnchange.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/fnchange.in -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/fnchange.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/fnchange.lst -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/makefile.sed -------------------------------------------------------------------------------- /Libs/libiconv/djgpp/sources.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/djgpp/sources.sed -------------------------------------------------------------------------------- /Libs/libiconv/extras/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/extras/ChangeLog -------------------------------------------------------------------------------- /Libs/libiconv/include/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/include/export.h -------------------------------------------------------------------------------- /Libs/libiconv/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/include/iconv.h -------------------------------------------------------------------------------- /Libs/libiconv/include/iconv.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/include/iconv.h.in -------------------------------------------------------------------------------- /Libs/libiconv/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/Makefile.in -------------------------------------------------------------------------------- /Libs/libiconv/lib/aliases.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/aliases.gperf -------------------------------------------------------------------------------- /Libs/libiconv/lib/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/aliases.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/aliases2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/aliases2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/aliases_aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/aliases_aix.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/aliases_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/aliases_dos.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/aliases_osf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/aliases_osf1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/armscii_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/armscii_8.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ascii.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/atarist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/atarist.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/big5.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/big5_2003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/big5_2003.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/c99.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/c99.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/canonical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/canonical.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ces_big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ces_big5.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ces_gbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ces_gbk.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cjk_variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cjk_variants.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_15.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_3.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_4.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_4a.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_4b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_4b.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_5.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_6.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_7.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cns11643_inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cns11643_inv.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/config.h.in -------------------------------------------------------------------------------- /Libs/libiconv/lib/converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/converters.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1046.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1124.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1125.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1129.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1129.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1131.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1133.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1133.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1161.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1162.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1162.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1163.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1250.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1251.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1251.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1252.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1252.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1253.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1254.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1255.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1256.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1257.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1257.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp1258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp1258.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp437.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp737.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp737.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp775.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp775.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp850.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp852.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp852.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp853.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp853.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp855.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp856.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp856.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp857.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp857.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp858.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp858.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp860.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp861.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp861.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp862.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp862.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp863.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp863.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp864.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp865.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp866.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp866.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp869.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp869.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp874.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp874.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp922.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp922.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp932.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp932.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp932ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp932ext.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp936.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp936.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp936ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp936ext.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp943.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp943.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp949.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp949.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp950.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp950.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/cp950ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/cp950ext.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/dec_hanyu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/dec_hanyu.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/dec_kanji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/dec_kanji.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/encodings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/encodings.def -------------------------------------------------------------------------------- /Libs/libiconv/lib/euc_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/euc_cn.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/euc_jisx0213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/euc_jisx0213.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/euc_jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/euc_jp.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/euc_kr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/euc_kr.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/euc_tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/euc_tw.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/flags.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/flushwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/flushwc.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gb12345.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gb12345.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gb12345ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gb12345ext.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gb18030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gb18030.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gb18030ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gb18030ext.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gb18030uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gb18030uni.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gb2312.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gb2312.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gbk.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gbkext1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gbkext1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gbkext2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gbkext2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/gbkext_inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gbkext_inv.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/genaliases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/genaliases.c -------------------------------------------------------------------------------- /Libs/libiconv/lib/genaliases2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/genaliases2.c -------------------------------------------------------------------------------- /Libs/libiconv/lib/genflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/genflags.c -------------------------------------------------------------------------------- /Libs/libiconv/lib/gentranslit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/gentranslit.c -------------------------------------------------------------------------------- /Libs/libiconv/lib/georgian_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/georgian_ps.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/hkscs1999.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/hkscs1999.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/hkscs2001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/hkscs2001.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/hkscs2004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/hkscs2004.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/hp_roman8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/hp_roman8.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/hz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/hz.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iconv.c -------------------------------------------------------------------------------- /Libs/libiconv/lib/iconv_open1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iconv_open1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iconv_open2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iconv_open2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso2022_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso2022_cn.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso2022_jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso2022_jp.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso2022_jp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso2022_jp1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso2022_jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso2022_jp2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso2022_jp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso2022_jp3.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso2022_kr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso2022_kr.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso646_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso646_cn.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso646_jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso646_jp.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_10.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_11.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_13.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_14.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_15.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_16.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_3.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_4.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_5.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_6.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_7.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_8.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/iso8859_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/iso8859_9.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/isoir165.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/isoir165.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/isoir165ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/isoir165ext.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/java.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/jisx0201.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/jisx0201.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/jisx0208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/jisx0208.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/jisx0212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/jisx0212.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/jisx0213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/jisx0213.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/johab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/johab.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/johab_hangul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/johab_hangul.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/koi8_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/koi8_r.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/koi8_ru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/koi8_ru.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/koi8_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/koi8_t.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/koi8_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/koi8_u.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ksc5601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ksc5601.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/loop_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/loop_unicode.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/loop_wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/loop_wchar.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/loops.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_arabic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_arabic.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_croatian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_croatian.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_cyrillic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_cyrillic.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_greek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_greek.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_hebrew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_hebrew.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_iceland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_iceland.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_roman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_roman.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_romania.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_romania.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_thai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_thai.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_turkish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_turkish.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mac_ukraine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mac_ukraine.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/mulelao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/mulelao.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/nextstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/nextstep.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/pt154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/pt154.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/relocatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/relocatable.c -------------------------------------------------------------------------------- /Libs/libiconv/lib/relocatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/relocatable.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/riscos1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/riscos1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/rk1048.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/rk1048.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/sjis.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/tcvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/tcvn.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/tds565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/tds565.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/tis620.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/tis620.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/translit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/translit.def -------------------------------------------------------------------------------- /Libs/libiconv/lib/translit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/translit.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs2be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs2be.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs2internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs2internal.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs2le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs2le.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs2swapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs2swapped.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs4.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs4be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs4be.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs4internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs4internal.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs4le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs4le.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/ucs4swapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/ucs4swapped.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/uhc_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/uhc_1.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/uhc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/uhc_2.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf16.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf16be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf16be.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf16le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf16le.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf32.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf32be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf32be.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf32le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf32le.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf7.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/utf8.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/vietcomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/vietcomb.h -------------------------------------------------------------------------------- /Libs/libiconv/lib/viscii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/lib/viscii.h -------------------------------------------------------------------------------- /Libs/libiconv/libcharset/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/libcharset/AUTHORS -------------------------------------------------------------------------------- /Libs/libiconv/libcharset/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/libcharset/HACKING -------------------------------------------------------------------------------- /Libs/libiconv/libcharset/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/libcharset/NEWS -------------------------------------------------------------------------------- /Libs/libiconv/libcharset/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/libcharset/README -------------------------------------------------------------------------------- /Libs/libiconv/libcharset/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /Libs/libiconv/m4/cp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/cp.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/eilseq.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/eilseq.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/endian.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/endian.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/general.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/general.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/libtool.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/ln.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/ln.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/ltoptions.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/ltsugar.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/ltversion.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /Libs/libiconv/m4/proto.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/m4/proto.m4 -------------------------------------------------------------------------------- /Libs/libiconv/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/Makefile.in -------------------------------------------------------------------------------- /Libs/libiconv/man/iconv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconv.1 -------------------------------------------------------------------------------- /Libs/libiconv/man/iconv.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconv.1.html -------------------------------------------------------------------------------- /Libs/libiconv/man/iconv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconv.3 -------------------------------------------------------------------------------- /Libs/libiconv/man/iconv.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconv.3.html -------------------------------------------------------------------------------- /Libs/libiconv/man/iconv_close.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconv_close.3 -------------------------------------------------------------------------------- /Libs/libiconv/man/iconv_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconv_open.3 -------------------------------------------------------------------------------- /Libs/libiconv/man/iconvctl.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/man/iconvctl.3 -------------------------------------------------------------------------------- /Libs/libiconv/os2/iconv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/os2/iconv.def -------------------------------------------------------------------------------- /Libs/libiconv/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ChangeLog -------------------------------------------------------------------------------- /Libs/libiconv/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/LINGUAS -------------------------------------------------------------------------------- /Libs/libiconv/po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/Makefile.in.in -------------------------------------------------------------------------------- /Libs/libiconv/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/Makevars -------------------------------------------------------------------------------- /Libs/libiconv/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/POTFILES.in -------------------------------------------------------------------------------- /Libs/libiconv/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/Rules-quot -------------------------------------------------------------------------------- /Libs/libiconv/po/af.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/af.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/af.po -------------------------------------------------------------------------------- /Libs/libiconv/po/bg.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/bg.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/bg.po -------------------------------------------------------------------------------- /Libs/libiconv/po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/boldquot.sed -------------------------------------------------------------------------------- /Libs/libiconv/po/ca.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ca.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ca.po -------------------------------------------------------------------------------- /Libs/libiconv/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/da.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/da.po -------------------------------------------------------------------------------- /Libs/libiconv/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/de.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/de.po -------------------------------------------------------------------------------- /Libs/libiconv/po/el.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/el.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/el.po -------------------------------------------------------------------------------- /Libs/libiconv/po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/en@quot.header -------------------------------------------------------------------------------- /Libs/libiconv/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/eo.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/eo.po -------------------------------------------------------------------------------- /Libs/libiconv/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/es.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/es.po -------------------------------------------------------------------------------- /Libs/libiconv/po/et.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/et.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/et.po -------------------------------------------------------------------------------- /Libs/libiconv/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/fi.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/fi.po -------------------------------------------------------------------------------- /Libs/libiconv/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/fr.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/fr.po -------------------------------------------------------------------------------- /Libs/libiconv/po/ga.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ga.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ga.po -------------------------------------------------------------------------------- /Libs/libiconv/po/gl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/gl.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/gl.po -------------------------------------------------------------------------------- /Libs/libiconv/po/hr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/hr.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/hr.po -------------------------------------------------------------------------------- /Libs/libiconv/po/hu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/hu.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/hu.po -------------------------------------------------------------------------------- /Libs/libiconv/po/id.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/id.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/id.po -------------------------------------------------------------------------------- /Libs/libiconv/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/it.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/it.po -------------------------------------------------------------------------------- /Libs/libiconv/po/libiconv.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/libiconv.pot -------------------------------------------------------------------------------- /Libs/libiconv/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/nl.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/nl.po -------------------------------------------------------------------------------- /Libs/libiconv/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/pl.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/pl.po -------------------------------------------------------------------------------- /Libs/libiconv/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/pt_BR.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/pt_BR.po -------------------------------------------------------------------------------- /Libs/libiconv/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/quot.sed -------------------------------------------------------------------------------- /Libs/libiconv/po/rm.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/rm.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/rm.po -------------------------------------------------------------------------------- /Libs/libiconv/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ro.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ro.po -------------------------------------------------------------------------------- /Libs/libiconv/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ru.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/ru.po -------------------------------------------------------------------------------- /Libs/libiconv/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sk.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sk.po -------------------------------------------------------------------------------- /Libs/libiconv/po/sl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sl.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sl.po -------------------------------------------------------------------------------- /Libs/libiconv/po/sq.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sq.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sq.po -------------------------------------------------------------------------------- /Libs/libiconv/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sr.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sr.po -------------------------------------------------------------------------------- /Libs/libiconv/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /Libs/libiconv/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sv.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/sv.po -------------------------------------------------------------------------------- /Libs/libiconv/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/tr.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/tr.po -------------------------------------------------------------------------------- /Libs/libiconv/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/uk.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/uk.po -------------------------------------------------------------------------------- /Libs/libiconv/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/vi.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/vi.po -------------------------------------------------------------------------------- /Libs/libiconv/po/wa.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/wa.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/wa.po -------------------------------------------------------------------------------- /Libs/libiconv/po/zh_CN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/zh_CN.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/zh_CN.po -------------------------------------------------------------------------------- /Libs/libiconv/po/zh_TW.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/zh_TW.gmo -------------------------------------------------------------------------------- /Libs/libiconv/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/po/zh_TW.po -------------------------------------------------------------------------------- /Libs/libiconv/preload/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/preload/aclocal.m4 -------------------------------------------------------------------------------- /Libs/libiconv/preload/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/preload/configure -------------------------------------------------------------------------------- /Libs/libiconv/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/src/Makefile.in -------------------------------------------------------------------------------- /Libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /Libs/libiconv/src/iconv_no_i18n.c: -------------------------------------------------------------------------------- 1 | #define NO_I18N 2 | #include "iconv.c" 3 | -------------------------------------------------------------------------------- /Libs/libiconv/srclib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/Makefile.am -------------------------------------------------------------------------------- /Libs/libiconv/srclib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/Makefile.in -------------------------------------------------------------------------------- /Libs/libiconv/srclib/alloca.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/alloca.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/areadlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/areadlink.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/areadlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/areadlink.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/binary-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/binary-io.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/c-ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/c-ctype.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/c-ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/c-ctype.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/errno.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/errno.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/error.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/error.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/gettext.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/intprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/intprops.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/malloc.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/malloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/malloca.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/malloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/malloca.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/memmove.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/pathmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/pathmax.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/progname.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/progname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/progname.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/progreloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/progreloc.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/readlink.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/setenv.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/signal.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/signal.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/stdint.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/stdint.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/stdio.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/stdio.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/stdlib.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/stdlib.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/streq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/streq.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/strerror.c -------------------------------------------------------------------------------- /Libs/libiconv/srclib/string.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/string.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/unistd.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/unistd.in.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/unitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/unitypes.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/uniwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/uniwidth.h -------------------------------------------------------------------------------- /Libs/libiconv/srclib/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srclib/xalloc.h -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/alloca.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/alloca.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/error.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/glibc2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/glibc2.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/iconv.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/intl.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/intmax.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/lib-ld.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/lock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/lock.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/malloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/malloc.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/nls.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/po.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/setenv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/setenv.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/stdint.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/wchar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/wchar.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/wint_t.m4 -------------------------------------------------------------------------------- /Libs/libiconv/srcm4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/srcm4/xsize.m4 -------------------------------------------------------------------------------- /Libs/libiconv/tests/ASCII.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/ASCII.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/BIG5.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/BIG5.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP1163.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0xAF 0x203E 2 | 0xD0 0x00D0 3 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP437.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP437.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP737.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP737.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP775.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP775.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP850.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP850.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP852.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP852.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP853.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP853.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP855.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP855.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP856.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP856.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP857.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP857.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP858.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP858.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP860.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP860.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP861.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP861.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP862.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP862.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP863.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP863.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP864.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP864.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP865.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP865.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP866.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP866.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP869.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP869.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP874.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP874.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP922.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP922.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP932.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP932.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP936.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP936.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP949.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP949.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/CP950.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/CP950.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/DEC-HANYU.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0xC2CBA1B8 0x5344 2 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/EUC-JP.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/GBK.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/GBK.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/HZ-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/ISO-2022-CN-EXT-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | 喲痓洈 4 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/ISO-2022-CN-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | 喲洈 4 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/ISO-2022-JP-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Japanese (日本語) こんにちは 2 | JIS -- 元気 開発 3 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/JOHAB.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/JOHAB.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/PT154.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/PT154.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/TCVN.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/TCVN.TXT -------------------------------------------------------------------------------- /Libs/libiconv/tests/Translit1.ASCII: -------------------------------------------------------------------------------- 1 | 'Ecrit par %s. 2 | -------------------------------------------------------------------------------- /Libs/libiconv/tests/UCS-4BE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /Libs/libiconv/tests/UCS-4LE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /Libs/libiconv/tests/UTF-16-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /Libs/libiconv/tests/UTF-16BE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /Libs/libiconv/tests/UTF-16LE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /Libs/libiconv/tests/UTF-7-snippet: -------------------------------------------------------------------------------- 1 | A+ImIDkQ- -------------------------------------------------------------------------------- /Libs/libiconv/tests/UTF-7-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | A≢Α -------------------------------------------------------------------------------- /Libs/libiconv/tests/genutf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/genutf8.c -------------------------------------------------------------------------------- /Libs/libiconv/tests/uniq-u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tests/uniq-u.c -------------------------------------------------------------------------------- /Libs/libiconv/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libiconv/tools/Makefile -------------------------------------------------------------------------------- /Libs/libsmbd/.dmallocrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/.dmallocrc -------------------------------------------------------------------------------- /Libs/libsmbd/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/.indent.pro -------------------------------------------------------------------------------- /Libs/libsmbd/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/Doxyfile -------------------------------------------------------------------------------- /Libs/libsmbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/Makefile -------------------------------------------------------------------------------- /Libs/libsmbd/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/Makefile.in -------------------------------------------------------------------------------- /Libs/libsmbd/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/VERSION -------------------------------------------------------------------------------- /Libs/libsmbd/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/aclocal.m4 -------------------------------------------------------------------------------- /Libs/libsmbd/auth/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/auth/auth.c -------------------------------------------------------------------------------- /Libs/libsmbd/auth/auth_sam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/auth/auth_sam.c -------------------------------------------------------------------------------- /Libs/libsmbd/auth/auth_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/auth/auth_unix.c -------------------------------------------------------------------------------- /Libs/libsmbd/auth/auth_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/auth/auth_util.c -------------------------------------------------------------------------------- /Libs/libsmbd/auth/pampass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/auth/pampass.c -------------------------------------------------------------------------------- /Libs/libsmbd/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/autogen.sh -------------------------------------------------------------------------------- /Libs/libsmbd/change-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/change-log -------------------------------------------------------------------------------- /Libs/libsmbd/client/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/client/client.c -------------------------------------------------------------------------------- /Libs/libsmbd/client/clitar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/client/clitar.c -------------------------------------------------------------------------------- /Libs/libsmbd/client/smbmnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/client/smbmnt.c -------------------------------------------------------------------------------- /Libs/libsmbd/client/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/client/tree.c -------------------------------------------------------------------------------- /Libs/libsmbd/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/config.guess -------------------------------------------------------------------------------- /Libs/libsmbd/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/config.log -------------------------------------------------------------------------------- /Libs/libsmbd/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/config.status -------------------------------------------------------------------------------- /Libs/libsmbd/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/config.sub -------------------------------------------------------------------------------- /Libs/libsmbd/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/configure -------------------------------------------------------------------------------- /Libs/libsmbd/configure.developer: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | `dirname $0`/configure --enable-developer "$@" 3 | -------------------------------------------------------------------------------- /Libs/libsmbd/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/configure.in -------------------------------------------------------------------------------- /Libs/libsmbd/configure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/configure.txt -------------------------------------------------------------------------------- /Libs/libsmbd/configurexbmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/configurexbmc.sh -------------------------------------------------------------------------------- /Libs/libsmbd/dynconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/dynconfig.c -------------------------------------------------------------------------------- /Libs/libsmbd/include/ads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/ads.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/asn_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/asn_1.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/auth.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/client.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/clitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/clitar.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/config.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/debug.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/doserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/doserr.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/event.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/gpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/gpo.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/idmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/idmap.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/intl.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/local.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/mangle.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/md5.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/module.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/msdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/msdfs.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/nterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/nterr.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/passdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/passdb.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/proto.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/rap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/rap.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/regfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/regfio.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/rpc_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/rpc_ds.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/smb.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/spnego.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/spnego.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/srvstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/srvstr.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/stamp-h: -------------------------------------------------------------------------------- 1 | Sun Jul 18 20:32:29 UTC 1999 2 | -------------------------------------------------------------------------------- /Libs/libsmbd/include/stamp-h.in: -------------------------------------------------------------------------------- 1 | Sun Jul 18 20:32:29 UTC 1999 2 | -------------------------------------------------------------------------------- /Libs/libsmbd/include/talloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/talloc.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/trans2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/trans2.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/vfs.h -------------------------------------------------------------------------------- /Libs/libsmbd/include/xfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/include/xfile.h -------------------------------------------------------------------------------- /Libs/libsmbd/iniparser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/iniparser/README -------------------------------------------------------------------------------- /Libs/libsmbd/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/install-sh -------------------------------------------------------------------------------- /Libs/libsmbd/intl/lang_tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/intl/lang_tdb.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/access.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/adt_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/adt_tree.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/afs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/afs.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/arc4.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/audit.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/bitmap.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/charcnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/charcnv.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/clobber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/clobber.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/crc32.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/data_blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/data_blob.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/debug.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/dmallocmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/dmallocmsg.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/dprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/dprintf.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/dummyroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/dummyroot.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/dummysmbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/dummysmbd.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/events.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/fault.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/fsusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/fsusage.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/gencache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/gencache.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/genrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/genrand.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/getsmbpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/getsmbpass.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/hmacmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/hmacmd5.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/iconv.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/interface.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/interfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/interfaces.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/md4.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/md5.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/messages.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/module.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/ms_fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/ms_fnmatch.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/pam_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/pam_errors.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/pidfile.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/privileges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/privileges.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/readline.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/repdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/repdir.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/replace.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/replace1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/replace1.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/secace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/secace.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/secacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/secacl.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/secdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/secdesc.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/select.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/sendfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/sendfile.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/sharesec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/sharesec.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/signal.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/smbldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/smbldap.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/smbrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/smbrun.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/snprintf.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/sock_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/sock_exec.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/substitute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/substitute.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/sysacls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/sysacls.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/sysquotas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/sysquotas.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/system.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/talloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/talloc.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/tallocmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/tallocmsg.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/talloctort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/talloctort.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/time.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/timegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/timegm.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/ufc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/ufc.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/username.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/username.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_file.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_nscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_nscd.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_pw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_pw.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_sec.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_sid.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_sock.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_str.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/util_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/util_uuid.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/version.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/wins_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/wins_srv.c -------------------------------------------------------------------------------- /Libs/libsmbd/lib/xfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/lib/xfile.c -------------------------------------------------------------------------------- /Libs/libsmbd/libSmb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libSmb.vcproj -------------------------------------------------------------------------------- /Libs/libsmbd/libads/cldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libads/cldap.c -------------------------------------------------------------------------------- /Libs/libsmbd/libads/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libads/dns.c -------------------------------------------------------------------------------- /Libs/libsmbd/libads/gpo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libads/gpo.c -------------------------------------------------------------------------------- /Libs/libsmbd/libads/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libads/ldap.c -------------------------------------------------------------------------------- /Libs/libsmbd/libads/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libads/sasl.c -------------------------------------------------------------------------------- /Libs/libsmbd/libads/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libads/util.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/asn1.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clidfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clidfs.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clifile.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clikrb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clikrb5.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clilist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clilist.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clirap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clirap.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clirap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clirap2.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/clistr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/clistr.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/doserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/doserr.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/gpo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/gpo.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/nmblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/nmblib.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/nterr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/nterr.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/ntlmssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/ntlmssp.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/smbdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/smbdes.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/smberr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/smberr.c -------------------------------------------------------------------------------- /Libs/libsmbd/libsmb/spnego.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/libsmb/spnego.c -------------------------------------------------------------------------------- /Libs/libsmbd/locking/brlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/locking/brlock.c -------------------------------------------------------------------------------- /Libs/libsmbd/locking/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/locking/posix.c -------------------------------------------------------------------------------- /Libs/libsmbd/mainpage.dox: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | @mainpage 4 | 5 | @li \ref CodingSuggestions 6 | 7 | **/ 8 | -------------------------------------------------------------------------------- /Libs/libsmbd/modules/CP437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/modules/CP437.c -------------------------------------------------------------------------------- /Libs/libsmbd/modules/CP850.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/modules/CP850.c -------------------------------------------------------------------------------- /Libs/libsmbd/modules/weird.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/modules/weird.c -------------------------------------------------------------------------------- /Libs/libsmbd/nmbd/asyncdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/nmbd/asyncdns.c -------------------------------------------------------------------------------- /Libs/libsmbd/nmbd/nmbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/nmbd/nmbd.c -------------------------------------------------------------------------------- /Libs/libsmbd/nsswitch/wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/nsswitch/wins.c -------------------------------------------------------------------------------- /Libs/libsmbd/pam_smbpass/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/pam_smbpass/TODO -------------------------------------------------------------------------------- /Libs/libsmbd/param/loadparm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/param/loadparm.c -------------------------------------------------------------------------------- /Libs/libsmbd/param/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/param/params.c -------------------------------------------------------------------------------- /Libs/libsmbd/passdb/passdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/passdb/passdb.c -------------------------------------------------------------------------------- /Libs/libsmbd/passdb/pdb_nds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/passdb/pdb_nds.c -------------------------------------------------------------------------------- /Libs/libsmbd/passdb/pdb_tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/passdb/pdb_tdb.c -------------------------------------------------------------------------------- /Libs/libsmbd/passdb/secrets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/passdb/secrets.c -------------------------------------------------------------------------------- /Libs/libsmbd/po/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/de.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/en.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/fr.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/genmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/genmsg -------------------------------------------------------------------------------- /Libs/libsmbd/po/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/it.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/ja.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/ja.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/nl.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/pl.msg -------------------------------------------------------------------------------- /Libs/libsmbd/po/tr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/po/tr.msg -------------------------------------------------------------------------------- /Libs/libsmbd/popt/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/CHANGES -------------------------------------------------------------------------------- /Libs/libsmbd/popt/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/COPYING -------------------------------------------------------------------------------- /Libs/libsmbd/popt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/README -------------------------------------------------------------------------------- /Libs/libsmbd/popt/dummy.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Libs/libsmbd/popt/findme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/findme.c -------------------------------------------------------------------------------- /Libs/libsmbd/popt/findme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/findme.h -------------------------------------------------------------------------------- /Libs/libsmbd/popt/popt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/popt.c -------------------------------------------------------------------------------- /Libs/libsmbd/popt/popt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/popt.h -------------------------------------------------------------------------------- /Libs/libsmbd/popt/popthelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/popthelp.c -------------------------------------------------------------------------------- /Libs/libsmbd/popt/poptint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/poptint.h -------------------------------------------------------------------------------- /Libs/libsmbd/popt/poptparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/poptparse.c -------------------------------------------------------------------------------- /Libs/libsmbd/popt/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/popt/system.h -------------------------------------------------------------------------------- /Libs/libsmbd/printing/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/printing/load.c -------------------------------------------------------------------------------- /Libs/libsmbd/printing/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/printing/pcap.c -------------------------------------------------------------------------------- /Libs/libsmbd/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/README -------------------------------------------------------------------------------- /Libs/libsmbd/python/gtdbtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/gtdbtool -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_conv.c -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_conv.h -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_lsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_lsa.c -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_lsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_lsa.h -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_samr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_samr.c -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_samr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_samr.h -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_smb.c -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_smb.h -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_tdb.c -------------------------------------------------------------------------------- /Libs/libsmbd/python/py_tdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/py_tdb.h -------------------------------------------------------------------------------- /Libs/libsmbd/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/python/setup.py -------------------------------------------------------------------------------- /Libs/libsmbd/sam/idmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/idmap.c -------------------------------------------------------------------------------- /Libs/libsmbd/sam/idmap_ad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/idmap_ad.c -------------------------------------------------------------------------------- /Libs/libsmbd/sam/idmap_ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/idmap_ldap.c -------------------------------------------------------------------------------- /Libs/libsmbd/sam/idmap_rid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/idmap_rid.c -------------------------------------------------------------------------------- /Libs/libsmbd/sam/idmap_tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/idmap_tdb.c -------------------------------------------------------------------------------- /Libs/libsmbd/sam/idmap_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/idmap_util.c -------------------------------------------------------------------------------- /Libs/libsmbd/sam/nss_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/sam/nss_info.c -------------------------------------------------------------------------------- /Libs/libsmbd/script/findsmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/script/findsmb -------------------------------------------------------------------------------- /Libs/libsmbd/script/gap.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/script/gap.awk -------------------------------------------------------------------------------- /Libs/libsmbd/script/revert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/script/revert.sh -------------------------------------------------------------------------------- /Libs/libsmbd/script/smbtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/script/smbtar -------------------------------------------------------------------------------- /Libs/libsmbd/smbadduser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbadduser -------------------------------------------------------------------------------- /Libs/libsmbd/smbadduser.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbadduser.in -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/aio.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/blocking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/blocking.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/chgpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/chgpasswd.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/close.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/conn.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/dfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/dfree.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/dir.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/dmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/dmapi.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/dosmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/dosmode.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/error.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/fake_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/fake_file.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/fileio.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/filename.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/files.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/ipc.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/lanman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/lanman.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/mangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/mangle.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/message.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/msdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/msdfs.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/negprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/negprot.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/noquotas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/noquotas.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/notify.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/ntquotas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/ntquotas.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/nttrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/nttrans.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/open.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/oplock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/oplock.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/password.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/pipes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/pipes.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/process.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/quotas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/quotas.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/reply.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/sec_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/sec_ctx.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/server.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/service.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/session.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/sesssetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/sesssetup.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/srvstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/srvstr.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/statcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/statcache.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/statvfs.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/trans2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/trans2.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/uid.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/utmp.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/vfs-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/vfs-wrap.c -------------------------------------------------------------------------------- /Libs/libsmbd/smbd/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/smbd/vfs.c -------------------------------------------------------------------------------- /Libs/libsmbd/stf/README.stf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/README.stf -------------------------------------------------------------------------------- /Libs/libsmbd/stf/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/example.py -------------------------------------------------------------------------------- /Libs/libsmbd/stf/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/notes.txt -------------------------------------------------------------------------------- /Libs/libsmbd/stf/osver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/osver.py -------------------------------------------------------------------------------- /Libs/libsmbd/stf/sambalib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/sambalib.py -------------------------------------------------------------------------------- /Libs/libsmbd/stf/spoolss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/spoolss.py -------------------------------------------------------------------------------- /Libs/libsmbd/stf/stf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/stf.py -------------------------------------------------------------------------------- /Libs/libsmbd/stf/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/strings.py -------------------------------------------------------------------------------- /Libs/libsmbd/stf/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/stf/test.py -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/Makefile -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/README -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/spinlock.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/spinlock.h -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdb.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdb.h -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdb.magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdb.magic -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbback.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbback.h -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbbackup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbbackup.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbdump.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbtest.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbtool.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbtorture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbtorture.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbutil.c -------------------------------------------------------------------------------- /Libs/libsmbd/tdb/tdbutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tdb/tdbutil.h -------------------------------------------------------------------------------- /Libs/libsmbd/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tests/README -------------------------------------------------------------------------------- /Libs/libsmbd/tests/shlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tests/shlib.c -------------------------------------------------------------------------------- /Libs/libsmbd/tests/summary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tests/summary.c -------------------------------------------------------------------------------- /Libs/libsmbd/tests/trivial.c: -------------------------------------------------------------------------------- 1 | main() 2 | { 3 | exit(0); 4 | } 5 | -------------------------------------------------------------------------------- /Libs/libsmbd/tests/unixsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/tests/unixsock.c -------------------------------------------------------------------------------- /Libs/libsmbd/torture/nbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/torture/nbio.c -------------------------------------------------------------------------------- /Libs/libsmbd/torture/t_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/torture/t_asn1.c -------------------------------------------------------------------------------- /Libs/libsmbd/torture/utable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/torture/utable.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net.h -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_ads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_ads.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_help.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_rap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_rap.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_rpc.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_sam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_sam.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_time.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/net_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/net_util.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/pdbedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/pdbedit.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/profiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/profiles.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/rpccheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/rpccheck.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/smbcacls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/smbcacls.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/smbget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/smbget.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/smbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/smbtree.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/status.c -------------------------------------------------------------------------------- /Libs/libsmbd/utils/testparm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/utils/testparm.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/cgi.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/diagnose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/diagnose.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/neg_lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/neg_lang.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/startstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/startstop.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/statuspage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/statuspage.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/swat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/swat.c -------------------------------------------------------------------------------- /Libs/libsmbd/web/swat_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/web/swat_proto.h -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/dirent.c -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/dirent.h -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/iconv.h -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/readme.txt -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/xbLibSmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/xbLibSmb.h -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/xb_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/xb_util.c -------------------------------------------------------------------------------- /Libs/libsmbd/xbox/xb_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Libs/libsmbd/xbox/xb_util.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/README.md -------------------------------------------------------------------------------- /Skins/Default/Audio/anim.xma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Audio/anim.xma -------------------------------------------------------------------------------- /Skins/Default/Audio/whish.xma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Audio/whish.xma -------------------------------------------------------------------------------- /Skins/Default/ChooseSkins.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/ChooseSkins.xui -------------------------------------------------------------------------------- /Skins/Default/ChooseSkins.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/ChooseSkins.xur -------------------------------------------------------------------------------- /Skins/Default/CopyDVD.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/CopyDVD.xui -------------------------------------------------------------------------------- /Skins/Default/CopyDVD.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/CopyDVD.xur -------------------------------------------------------------------------------- /Skins/Default/DualPane.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/DualPane.xui -------------------------------------------------------------------------------- /Skins/Default/DualPane.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/DualPane.xur -------------------------------------------------------------------------------- /Skins/Default/PathManager.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/PathManager.xui -------------------------------------------------------------------------------- /Skins/Default/PathManager.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/PathManager.xur -------------------------------------------------------------------------------- /Skins/Default/TeamFSD.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/TeamFSD.xui -------------------------------------------------------------------------------- /Skins/Default/TeamFSD.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/TeamFSD.xur -------------------------------------------------------------------------------- /Skins/Default/Trainers.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Trainers.xui -------------------------------------------------------------------------------- /Skins/Default/Trainers.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Trainers.xur -------------------------------------------------------------------------------- /Skins/Default/Wait.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Wait.xui -------------------------------------------------------------------------------- /Skins/Default/Wait.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Wait.xur -------------------------------------------------------------------------------- /Skins/Default/Weather.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Weather.xui -------------------------------------------------------------------------------- /Skins/Default/Weather.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/Weather.xur -------------------------------------------------------------------------------- /Skins/Default/devIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/devIcon.png -------------------------------------------------------------------------------- /Skins/Default/filemanager.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/filemanager.xui -------------------------------------------------------------------------------- /Skins/Default/filemanager.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/filemanager.xur -------------------------------------------------------------------------------- /Skins/Default/gamelist.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/gamelist.xui -------------------------------------------------------------------------------- /Skins/Default/gamelist.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/gamelist.xur -------------------------------------------------------------------------------- /Skins/Default/main.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/main.xui -------------------------------------------------------------------------------- /Skins/Default/main.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/main.xur -------------------------------------------------------------------------------- /Skins/Default/menuconfig.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/menuconfig.xui -------------------------------------------------------------------------------- /Skins/Default/menuconfig.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/menuconfig.xur -------------------------------------------------------------------------------- /Skins/Default/options.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/options.xui -------------------------------------------------------------------------------- /Skins/Default/options.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/options.xur -------------------------------------------------------------------------------- /Skins/Default/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/preview.png -------------------------------------------------------------------------------- /Skins/Default/savedgames.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/savedgames.xui -------------------------------------------------------------------------------- /Skins/Default/savedgames.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/savedgames.xur -------------------------------------------------------------------------------- /Skins/Default/screenshots.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/screenshots.xui -------------------------------------------------------------------------------- /Skins/Default/screenshots.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/screenshots.xur -------------------------------------------------------------------------------- /Skins/Default/skin.extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/skin.extract -------------------------------------------------------------------------------- /Skins/Default/skin.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/skin.ver -------------------------------------------------------------------------------- /Skins/Default/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/skin.xml -------------------------------------------------------------------------------- /Skins/Default/skin.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/skin.xui -------------------------------------------------------------------------------- /Skins/Default/skin.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/skin.xur -------------------------------------------------------------------------------- /Skins/Default/temp.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/temp.xui -------------------------------------------------------------------------------- /Skins/Default/updater.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/updater.xui -------------------------------------------------------------------------------- /Skins/Default/updater.xur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/Default/updater.xur -------------------------------------------------------------------------------- /Skins/versioner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxUnity/freestyledash/HEAD/Skins/versioner.exe --------------------------------------------------------------------------------