├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── Chat ├── CMakeLists.txt ├── changelog.txt ├── chat.h ├── chatASCII.h ├── chatCallbacks.c ├── chatCallbacks.h ├── chatChannel.c ├── chatChannel.h ├── chatCrypt.c ├── chatCrypt.h ├── chatHandlers.c ├── chatHandlers.h ├── chatMain.c ├── chatMain.h ├── chatSocket.c ├── chatSocket.h ├── chatc │ ├── CMakeLists.txt │ ├── chatc.c │ ├── chatcrevolutioncw │ │ └── chatcrevolution.mcp │ ├── chatnitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── chatnitrocw.mcp │ ├── chatps2 │ │ └── Makefile │ ├── chatps2cw │ │ └── chatps2cw.mcp │ ├── chatps2prodg │ │ ├── chatps2prodg.dsp │ │ ├── chatps2prodg.dsw │ │ ├── chatps2prodg.sln │ │ └── chatps2prodg.vcproj │ ├── chatps3 │ │ └── Makefile │ ├── chatps3prodg │ │ ├── chatps3prodg.sln │ │ └── chatps3prodg.vcproj │ ├── chatpsp │ │ └── Makefile │ └── chatpspprodg │ │ ├── chatpspprodg.sln │ │ └── chatpspprodg.vcproj └── chatty │ ├── CMakeLists.txt │ ├── ChannelListDlg.cpp │ ├── ChannelListDlg.h │ ├── ChannelModeDlg.cpp │ ├── ChannelModeDlg.h │ ├── ChildFrm.cpp │ ├── ChildFrm.h │ ├── ConnectDlg.cpp │ ├── ConnectDlg.h │ ├── EnterDlg.cpp │ ├── EnterDlg.h │ ├── GetUserInfoDlg.cpp │ ├── GetUserInfoDlg.h │ ├── KickReasonDlg.cpp │ ├── KickReasonDlg.h │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── SendRawDlg.cpp │ ├── SendRawDlg.h │ ├── SetPasswordDlg.cpp │ ├── SetPasswordDlg.h │ ├── SetTopicDlg.cpp │ ├── SetTopicDlg.h │ ├── StdAfx.h │ ├── TalkDlg.cpp │ ├── TalkDlg.h │ ├── chatty.cpp │ ├── chatty.h │ ├── chatty.rc │ ├── chattyDoc.cpp │ ├── chattyDoc.h │ ├── chattyView.cpp │ ├── chattyView.h │ ├── res │ ├── Toolbar.bmp │ ├── chatty.ico │ ├── chatty.rc2 │ └── chattyDoc.ico │ └── resource.h ├── Direct2Game ├── CMakeLists.txt ├── Direct2Game.h ├── Direct2GameTest │ ├── CMakeLists.txt │ └── d2gtest.c ├── changelog.txt ├── d2gDeserialize.c ├── d2gDeserialize.h ├── d2gDownloads.c ├── d2gDownloads.h ├── d2gMain.c ├── d2gMain.h ├── d2gServices.c ├── d2gServices.h ├── d2gUtil.c └── d2gUtil.h ├── GP ├── CMakeLists.txt ├── changelog.txt ├── gp.c ├── gp.h ├── gpi.c ├── gpi.h ├── gpiBuddy.c ├── gpiBuddy.h ├── gpiBuffer.c ├── gpiBuffer.h ├── gpiCallback.c ├── gpiCallback.h ├── gpiConnect.c ├── gpiConnect.h ├── gpiInfo.c ├── gpiInfo.h ├── gpiKeys.c ├── gpiKeys.h ├── gpiOperation.c ├── gpiOperation.h ├── gpiPS3.c ├── gpiPS3.h ├── gpiPeer.c ├── gpiPeer.h ├── gpiProfile.c ├── gpiProfile.h ├── gpiSearch.c ├── gpiSearch.h ├── gpiTransfer.c ├── gpiTransfer.h ├── gpiUnique.c ├── gpiUnique.h ├── gpiUtility.c ├── gpiUtility.h ├── gpstress │ ├── CMakeLists.txt │ └── gpstress.c ├── gptest │ ├── CMakeLists.txt │ ├── StdAfx.h │ ├── gptest.cpp │ ├── gptest.h │ ├── gptest.rc │ ├── gptestDlg.cpp │ ├── gptestDlg.h │ ├── res │ │ ├── gptest.ico │ │ └── gptest.rc2 │ └── resource.h └── gptestc │ ├── CMakeLists.txt │ ├── gpnitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── gpnitrocw.mcp │ ├── gpps2 │ └── Makefile │ ├── gpps2cw │ └── gpps2cw.mcp │ ├── gpps2prodg │ ├── gpps2prodg.dsp │ ├── gpps2prodg.dsw │ ├── gpps2prodg.sln │ └── gpps2prodg.vcproj │ ├── gpps3 │ └── Makefile │ ├── gpps3prodg │ ├── gpps3prodg.sln │ └── gpps3prodg.vcproj │ ├── gppsp │ └── Makefile │ ├── gppspprodg │ ├── gppspprodg.sln │ └── gppspprodg.vcproj │ ├── gprevolutioncw │ └── gprevolutioncw.mcp │ ├── gptestc.c │ └── gpx360 │ ├── gpx360.sln │ └── gpx360.vcproj ├── Gamespy.CSWrapper ├── app.config ├── gamespy.sln ├── gamespySample.csproj ├── samples │ ├── AtlasAppProgram.cs │ ├── NatAppProgram.cs │ ├── Program.cs │ ├── QR2AppProgram.cs │ ├── SakeAppProgram.cs │ └── ServerBrowserAppProgram.cs └── src │ ├── gamespyAtlas.cs │ ├── gamespyAuth.cs │ ├── gamespyBase.cs │ ├── gamespyCommon.cs │ ├── gamespyCommonDebug.cs │ ├── gamespyHttp.cs │ ├── gamespyNatNeg.cs │ ├── gamespyQueryAndReport.cs │ ├── gamespySake.cs │ └── gamespyServerBrowser.cs ├── LICENSE ├── Peer ├── CMakeLists.txt ├── PeerLobby │ ├── CMakeLists.txt │ ├── ConnectPage.cpp │ ├── ConnectPage.h │ ├── CreatePage.cpp │ ├── CreatePage.h │ ├── GroupPage.cpp │ ├── GroupPage.h │ ├── LobbyWizard.cpp │ ├── LobbyWizard.h │ ├── PeerLobby.cpp │ ├── PeerLobby.h │ ├── PeerLobby.rc │ ├── SideBarCtrl.cpp │ ├── SideBarCtrl.h │ ├── StagingPage.cpp │ ├── StagingPage.h │ ├── StdAfx.h │ ├── TitlePage.cpp │ ├── TitlePage.h │ ├── res │ │ ├── PeerLobby.ico │ │ ├── PeerLobby.rc2 │ │ ├── ico00001.ico │ │ ├── ico00002.ico │ │ ├── ico00003.ico │ │ ├── ico00004.ico │ │ └── icon1.ico │ └── resource.h ├── PeerTest │ ├── CMakeLists.txt │ ├── PeerTest.cpp │ ├── PeerTest.h │ ├── PeerTest.rc │ ├── PeerTestDlg.cpp │ ├── PeerTestDlg.h │ ├── StdAfx.h │ ├── res │ │ ├── PeerTest.ico │ │ └── PeerTest.rc2 │ └── resource.h ├── changelog.txt ├── peer.h ├── peerAscii.h ├── peerAutoMatch.c ├── peerAutoMatch.h ├── peerCallbacks.c ├── peerCallbacks.h ├── peerGlobalCallbacks.c ├── peerGlobalCallbacks.h ├── peerHost.c ├── peerHost.h ├── peerKeys.c ├── peerKeys.h ├── peerMain.c ├── peerMain.h ├── peerMangle.c ├── peerMangle.h ├── peerOperations.c ├── peerOperations.h ├── peerPing.c ├── peerPing.h ├── peerPlayers.c ├── peerPlayers.h ├── peerQR.c ├── peerQR.h ├── peerRooms.c ├── peerRooms.h ├── peerSB.c ├── peerSB.h └── peerc │ ├── CMakeLists.txt │ ├── peerc.c │ ├── peernitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── peernitrocw.mcp │ ├── peerps2 │ └── Makefile │ ├── peerps2cw │ └── peerps2cw.mcp │ ├── peerps2prodg │ ├── peerps2prodg.dsp │ ├── peerps2prodg.dsw │ ├── peerps2prodg.sln │ └── peerps2prodg.vcproj │ ├── peerps3 │ └── Makefile │ ├── peerps3prodg │ ├── peerps3prodg.sln │ └── peerps3prodg.vcproj │ ├── peerpsp │ └── Makefile │ ├── peerpspprodg │ ├── peerpspprodg.sln │ └── peerpspprodg.vcproj │ └── peerrevolutioncw │ └── peerrevolutioncw.mcp ├── README.md ├── Samples ├── AuthenticatePlayer │ ├── AuthenticatePlayer.vcproj │ ├── ReadMe.txt │ └── sampleAuth.c ├── GameSpySamples.sln ├── QueryLeaderboard │ ├── QueryLeaderboard.vcproj │ ├── ReadMe.txt │ ├── atlas_atlasSamples_v2.c │ ├── atlas_atlasSamples_v2.h │ └── sampleQueryLeaderboard.c ├── ReportStats │ ├── ReadMe.txt │ ├── ReportStats.vcproj │ ├── atlas_atlasSamples_v2.c │ ├── atlas_atlasSamples_v2.h │ └── sampleReportStats.c ├── SaveAndRetrieveScreenshot │ ├── ReadMe.txt │ ├── SaveAndRetrieveScreenshot.vcproj │ ├── gamespylogo.bmp │ └── sampleSaveRetrieveScreenshot.c ├── StoreSavedGameAndRetrieve │ ├── ReadMe.txt │ ├── StoreSavedGameAndRetrieve.vcproj │ └── sampleSaveGame.c ├── TapRace │ └── iphone │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── BuddyListCellView.h │ │ ├── BuddyListCellView.mm │ │ ├── CreateUserController.h │ │ ├── CreateUserController.mm │ │ ├── FlipsideView.h │ │ ├── FlipsideView.m │ │ ├── FlipsideViewController.h │ │ ├── FlipsideViewController.mm │ │ ├── ForgotPassword.h │ │ ├── ForgotPassword.mm │ │ ├── GameController.h │ │ ├── GameController.mm │ │ ├── GameResultsController.h │ │ ├── GameResultsController.mm │ │ ├── LeaderboardsController.h │ │ ├── LeaderboardsController.mm │ │ ├── LeadersByLocationController.h │ │ ├── LeadersByLocationController.mm │ │ ├── LeadersController.h │ │ ├── LeadersController.mm │ │ ├── LoginController.h │ │ ├── LoginController.mm │ │ ├── MatchmakingController.h │ │ ├── MatchmakingController.mm │ │ ├── MenuController.h │ │ ├── MenuController.mm │ │ ├── MyCLController.h │ │ ├── MyCLController.mm │ │ ├── Resources │ │ ├── AboutGamespy.png │ │ ├── Default.png │ │ ├── FlipsideView.xib │ │ ├── Gamespy.png │ │ ├── Globe.png │ │ ├── MainWindow.xib │ │ ├── Top100.jpg │ │ ├── UserStats.xib │ │ ├── btn_down.png │ │ ├── btn_up.png │ │ ├── buddies.png │ │ ├── buddies_rematch.png │ │ ├── buddyListCell.xib │ │ ├── camera.png │ │ ├── createuser.xib │ │ ├── forgotPassword.xib │ │ ├── gamespyFooter.png │ │ ├── gs_logo.gif │ │ ├── icon_29x29.png │ │ ├── icon_57x57.png │ │ ├── leaderboard.png │ │ ├── leaderboardMap.png │ │ ├── leaderboards.xib │ │ ├── leadersbylocation.xib │ │ ├── leadersbytime.xib │ │ ├── login.xib │ │ ├── matchmaking.xib │ │ ├── menu.png │ │ ├── menu.xib │ │ ├── nophoto.png │ │ ├── people.png │ │ ├── playAgain.png │ │ ├── singlePlayer.png │ │ ├── singleplayergame.xib │ │ ├── singleplayerresults.xib │ │ ├── takephoto.xib │ │ ├── tapImage.png │ │ ├── trophy.png │ │ ├── twoplayergame.xib │ │ └── twoplayerresults.xib │ │ ├── TapRace-Info.plist │ │ ├── UserStatsController.h │ │ ├── UserStatsController.mm │ │ ├── Utility.h │ │ ├── Utility.mm │ │ ├── atlas_taprace_v2.c │ │ ├── atlas_taprace_v2.h │ │ └── main.mm ├── atlas_ruleset_atlasSamples_v2.xml ├── match_sim_1649_2_60efe32c-22ff-4f03-b3dd-db0664048dc6.xml ├── sampleCommon.c └── sampleCommon.h ├── Voice2 ├── CMakeLists.txt ├── Voice2BuddyMFC │ ├── CMakeLists.txt │ ├── LoginDlg.cpp │ ├── LoginDlg.h │ ├── SetupDlg.cpp │ ├── SetupDlg.h │ ├── StdAfx.h │ ├── Voice2BuddyMFC.cpp │ ├── Voice2BuddyMFC.h │ ├── Voice2BuddyMFC.rc │ ├── Voice2BuddyMFCDlg.cpp │ ├── Voice2BuddyMFCDlg.h │ ├── VoiceSessionDlg.cpp │ ├── VoiceSessionDlg.h │ ├── res │ │ ├── Voice2BuddyMFC.ico │ │ ├── Voice2BuddyMFC.rc2 │ │ ├── gamespyl.bmp │ │ ├── logo270x83.bmp │ │ ├── microsoft-microphone.bmp │ │ ├── microsoft-speaker.bmp │ │ ├── speaking.bmp │ │ └── speaking2.bmp │ └── resource.h ├── Voice2Test │ ├── CMakeLists.txt │ ├── Voice2Test.c │ ├── gvps2cw │ │ ├── gvps2cw.mcp │ │ ├── gvps2cw_prefix_eenet_debug.h │ │ ├── gvps2cw_prefix_eenet_release.h │ │ ├── gvps2cw_prefix_insock_debug.h │ │ ├── gvps2cw_prefix_insock_release.h │ │ ├── gvps2cw_prefix_snsystems_debug.h │ │ └── gvps2cw_prefix_snsystems_release.h │ ├── gvps2prodg │ │ ├── gvps2prodg.dsp │ │ ├── gvps2prodg.dsw │ │ ├── gvps2prodg.sln │ │ └── gvps2prodg.vcproj │ ├── gvps3prodg │ │ ├── gvps3prodg.sln │ │ └── gvps3prodg.vcproj │ ├── gvps3prodgspeexspu │ │ ├── gvps3prodgspeexspu.sln │ │ ├── gvps3prodgspeexspu.vcproj │ │ └── vsi.nul │ └── gvpspprodg │ │ ├── gvpspprodg.sln │ │ └── gvpspprodg.vcproj ├── changelog.txt ├── gv.h ├── gvCodec.c ├── gvCodec.h ├── gvCustomDevice.c ├── gvCustomDevice.h ├── gvDevice.c ├── gvDevice.h ├── gvDirectSound.c ├── gvDirectSound.h ├── gvFrame.c ├── gvFrame.h ├── gvGSM.c ├── gvGSM.h ├── gvLogitechPS2Codecs.c ├── gvLogitechPS2Codecs.h ├── gvMain.c ├── gvMain.h ├── gvOSXAudio.c ├── gvOSXAudio.h ├── gvPS2Audio.c ├── gvPS2Audio.h ├── gvPS2Eyetoy.c ├── gvPS2Eyetoy.h ├── gvPS2Headset.c ├── gvPS2Headset.h ├── gvPS2Spu2.c ├── gvPS2Spu2.h ├── gvPS3Audio.c ├── gvPS3Audio.h ├── gvPS3Headset.c ├── gvPS3Headset.h ├── gvPSPAudio.c ├── gvPSPAudio.h ├── gvSource.c ├── gvSource.h ├── gvSpeex.c ├── gvSpeex.h ├── gvSpeexSpu.c ├── gvSpeexSpu.h ├── gvUtil.c ├── gvUtil.h ├── libgsm │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── ChangeLog │ ├── INSTALL │ ├── MACHINES │ ├── MANIFEST │ ├── Makefile │ ├── README │ ├── add-test │ │ ├── add_test.c │ │ └── add_test.dta │ ├── inc │ │ ├── config.h │ │ ├── gsm.h │ │ ├── gsm.h.orig │ │ ├── private.h │ │ ├── proto.h │ │ ├── toast.h │ │ └── unproto.h │ ├── man │ │ ├── bitter.1 │ │ ├── gsm.3 │ │ ├── gsm_explode.3 │ │ ├── gsm_option.3 │ │ ├── gsm_print.3 │ │ └── toast.1 │ ├── src │ │ ├── add.c │ │ ├── code.c │ │ ├── debug.c │ │ ├── decode.c │ │ ├── gsm_create.c │ │ ├── gsm_decode.c │ │ ├── gsm_destroy.c │ │ ├── gsm_encode.c │ │ ├── gsm_explode.c │ │ ├── gsm_implode.c │ │ ├── gsm_option.c │ │ ├── gsm_print.c │ │ ├── long_term.c │ │ ├── lpc.c │ │ ├── preprocess.c │ │ ├── rpe.c │ │ ├── short_term.c │ │ ├── table.c │ │ ├── toast.c │ │ ├── toast_alaw.c │ │ ├── toast_audio.c │ │ ├── toast_lin.c │ │ └── toast_ulaw.c │ ├── tls │ │ ├── bitter.c │ │ ├── bitter.dta │ │ ├── ginger.c │ │ ├── sour.c │ │ ├── sour1.dta │ │ ├── sour2.dta │ │ ├── sweet.c │ │ ├── taste.c │ │ └── taste.h │ └── tst │ │ ├── cod2lin.c │ │ ├── cod2txt.c │ │ ├── gsm2cod.c │ │ ├── lin2cod.c │ │ ├── lin2txt.c │ │ └── run ├── libspeex │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── Doxyfile │ ├── IDEAS │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── OPTIMIZE │ ├── README │ ├── README.TI-DSP │ ├── README.Trimedia │ ├── README.blackfin │ ├── README.symbian │ ├── README.win32 │ ├── Speex.kdevelop │ ├── Speex.spec.in │ ├── TODO │ ├── aclocal.m4 │ ├── autogen.sh │ ├── autom4te.cache │ │ ├── output.0 │ │ ├── output.1 │ │ ├── output.2 │ │ ├── requests │ │ ├── traces.0 │ │ ├── traces.1 │ │ └── traces.2 │ ├── cmake │ │ ├── FindFFTW.cmake │ │ ├── FindOgg.cmake │ │ ├── FindSpeexDsp.cmake │ │ ├── SpeexConfig.cmake │ │ └── TestVarArrays.cmake │ ├── compile │ ├── config.guess │ ├── config.h.cmake │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── celp_decoder.eps │ │ ├── celp_decoder.odg │ │ ├── components.eps │ │ ├── components.odg │ │ ├── draft-herlein-avt-rtp-speex-00.txt │ │ ├── draft-herlein-speex-rtp-profile-02.txt │ │ ├── draft-herlein-speex-rtp-profile-03.txt │ │ ├── draft-herlein-speex-rtp-profile-03.xml │ │ ├── draft-ietf-avt-rtp-speex-00.txt │ │ ├── draft-ietf-avt-rtp-speex-01-tmp.txt │ │ ├── draft-ietf-avt-rtp-speex-05-tmp.txt │ │ ├── echo_path.eps │ │ ├── echo_path.odg │ │ ├── manual.lyx │ │ ├── manual.pdf │ │ ├── nb_celp.c │ │ ├── programming.html │ │ ├── ref_shaping.eps │ │ ├── rtp.txt │ │ ├── sampledec.c │ │ ├── sampleenc.c │ │ ├── speex_abs.eps │ │ ├── speex_abs.odg │ │ ├── speex_analysis.eps │ │ └── speex_analysis.odg │ ├── html │ │ ├── index.html │ │ ├── patents.html │ │ ├── speex.png │ │ ├── speex.webprj │ │ └── speex.xcf │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── speex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── speex.h │ │ │ ├── speex_bits.h │ │ │ ├── speex_callbacks.h │ │ │ ├── speex_config_types.h.in │ │ │ ├── speex_header.h │ │ │ ├── speex_stereo.h │ │ │ └── speex_types.h │ ├── install-sh │ ├── libspeex │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── bfin.h │ │ ├── bits.c │ │ ├── cb_search.c │ │ ├── cb_search.h │ │ ├── cb_search_arm4.h │ │ ├── cb_search_bfin.h │ │ ├── cb_search_sse.h │ │ ├── exc_10_16_table.c │ │ ├── exc_10_32_table.c │ │ ├── exc_20_32_table.c │ │ ├── exc_5_256_table.c │ │ ├── exc_5_64_table.c │ │ ├── exc_8_128_table.c │ │ ├── fftwrap.c │ │ ├── fftwrap.h │ │ ├── filters.c │ │ ├── filters.h │ │ ├── filters_arm4.h │ │ ├── filters_bfin.h │ │ ├── filters_sse.h │ │ ├── fixed_arm4.h │ │ ├── fixed_arm5e.h │ │ ├── fixed_bfin.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── gain_table.c │ │ ├── gain_table_lbr.c │ │ ├── hexc_10_32_table.c │ │ ├── hexc_table.c │ │ ├── high_lsp_tables.c │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── kiss_fftr.c │ │ ├── kiss_fftr.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lpc_bfin.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lsp_bfin.h │ │ ├── lsp_tables_nb.c │ │ ├── ltp.c │ │ ├── ltp.h │ │ ├── ltp_arm4.h │ │ ├── ltp_bfin.h │ │ ├── ltp_sse.h │ │ ├── math_approx.h │ │ ├── misc_bfin.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── modes_wb.c │ │ ├── nb_celp.c │ │ ├── nb_celp.h │ │ ├── os_support.h │ │ ├── quant_lsp.c │ │ ├── quant_lsp.h │ │ ├── quant_lsp_bfin.h │ │ ├── sb_celp.c │ │ ├── sb_celp.h │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── speex.c │ │ ├── speex_callbacks.c │ │ ├── speex_header.c │ │ ├── stack_alloc.h │ │ ├── stereo.c │ │ ├── testenc.c │ │ ├── testenc_uwb.c │ │ ├── testenc_wb.c │ │ ├── vbr.c │ │ ├── vbr.h │ │ ├── vorbis_psy.c │ │ ├── vorbis_psy.h │ │ ├── vq.c │ │ ├── vq.h │ │ ├── vq_arm4.h │ │ ├── vq_bfin.h │ │ ├── vq_sse.h │ │ └── window.c │ ├── ltmain.sh │ ├── m4 │ │ ├── add_cflags.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── pkg.m4 │ ├── macosx │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── Speex.xcodeproj │ │ │ └── project.pbxproj │ │ └── Speex_UB.xcodeproj │ │ │ └── project.pbxproj │ ├── missing │ ├── speex.m4 │ ├── speex.pc.in │ ├── speexclient │ │ ├── README │ │ ├── alsa_device.c │ │ ├── alsa_device.h │ │ ├── compile.sh │ │ ├── speex_jitter_buffer.c │ │ ├── speex_jitter_buffer.h │ │ └── speexclient.c │ ├── src │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── getopt.c │ │ ├── getopt1.c │ │ ├── getopt_win.h │ │ ├── skeleton.c │ │ ├── skeleton.h │ │ ├── speexdec.1 │ │ ├── speexdec.c │ │ ├── speexenc.1 │ │ ├── speexenc.c │ │ ├── wav_io.c │ │ ├── wav_io.h │ │ ├── wave_out.c │ │ └── wave_out.h │ ├── symbian │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bld.inf │ │ ├── config.h │ │ └── speex.mmp │ ├── ti │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── os_support_custom.h │ │ ├── speex_C54_test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── speex_C54_test.cmd │ │ │ └── speex_C54_test.pjt │ │ ├── speex_C55_test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── speex_C55_test.cmd │ │ │ └── speex_C55_test.pjt │ │ ├── speex_C64_test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── speex_C64_test.cmd │ │ │ └── speex_C64_test.pjt │ │ ├── testenc-TI-C5x.c │ │ └── testenc-TI-C64x.c │ ├── tmv │ │ ├── _kiss_fft_guts_tm.h │ │ ├── cb_search_tm.h │ │ ├── config.h │ │ ├── fftwrap_tm.h │ │ ├── filterbank_tm.h │ │ ├── filters_tm.h │ │ ├── fixed_tm.h │ │ ├── kiss_fft_tm.h │ │ ├── kiss_fftr_tm.h │ │ ├── lpc_tm.h │ │ ├── lsp_tm.h │ │ ├── ltp_tm.h │ │ ├── misc_tm.h │ │ ├── profile_tm.h │ │ ├── quant_lsp_tm.h │ │ ├── speex_config_types.h │ │ └── vq_tm.h │ └── win32 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VS2003 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libspeex.sln │ │ ├── libspeex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── libspeex.vcproj │ │ ├── speexdec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexdec.vcproj │ │ ├── speexenc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexenc.vcproj │ │ └── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── testenc.vcproj │ │ │ ├── testenc_uwb.vcproj │ │ │ └── testenc_wb.vcproj │ │ ├── VS2005 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libspeex.sln │ │ ├── libspeex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── libspeex.vcproj │ │ ├── speexdec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexdec.vcproj │ │ ├── speexenc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexenc.vcproj │ │ └── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── testenc.vcproj │ │ │ ├── testenc_uwb.vcproj │ │ │ └── testenc_wb.vcproj │ │ ├── VS2008 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libspeex.sln │ │ ├── libspeex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── libspeex.vcproj │ │ ├── speexdec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexdec.vcproj │ │ ├── speexenc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexenc.vcproj │ │ └── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── testenc.vcproj │ │ │ ├── testenc_uwb.vcproj │ │ │ └── testenc_wb.vcproj │ │ ├── VS2017 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libspeex.sln │ │ ├── libspeex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── libspeex.vcxproj │ │ │ └── libspeex.vcxproj.filters │ │ ├── speexdec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexdec.vcproj │ │ ├── speexenc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── speexenc.vcproj │ │ └── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── testenc.vcproj │ │ │ ├── testenc_uwb.vcproj │ │ │ └── testenc_wb.vcproj │ │ ├── config.h │ │ ├── libspeex.def │ │ ├── libspeex │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libspeex.dsp │ │ ├── libspeex.dsw │ │ └── libspeex_dynamic.dsp │ │ ├── speex.iss │ │ ├── speexdec │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speexdec.dsp │ │ └── speexdec.dsw │ │ └── speexenc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speexenc.dsp │ │ └── speexenc.dsw ├── voice2bench │ ├── CMakeLists.txt │ ├── voice2bench.c │ ├── voice2benchps2cw │ │ ├── voice2bench_prefix_eenet_debug.h │ │ ├── voice2bench_prefix_eenet_release.h │ │ ├── voice2bench_prefix_insock_debug.h │ │ ├── voice2bench_prefix_insock_release.h │ │ ├── voice2bench_prefix_snsystems_debug.h │ │ ├── voice2bench_prefix_snsystems_release.h │ │ └── voice2benchps2cw.mcp │ ├── voice2benchps2prodg │ │ ├── voice2benchps2prodg.dsp │ │ └── voice2benchps2prodg.dsw │ ├── voice2benchps3prodg │ │ ├── voice2benchps3prodg.sln │ │ └── voice2benchps3prodg.vcproj │ └── voicesample.h └── winerrordxgi.h ├── brigades ├── CMakeLists.txt ├── brigades.h ├── brigadesTest │ ├── CMakeLists.txt │ └── brigadesTest.c ├── changelog.txt ├── gsbMain.c ├── gsbMain.h ├── gsbSerialize.c ├── gsbSerialize.h ├── gsbServices.c ├── gsbServices.h ├── gsbUtil.c └── gsbUtil.h ├── cmake ├── FindDirectX.cmake ├── FindGsm.cmake ├── FindSpeex.cmake └── MFCMacro.cmake ├── common ├── CMakeLists.txt ├── changelog-sharedcode.txt ├── changelog.txt ├── darray.c ├── darray.h ├── gsAssert.c ├── gsAssert.h ├── gsAvailable.c ├── gsAvailable.h ├── gsCommon.h ├── gsCore.c ├── gsCore.h ├── gsCrypt.c ├── gsCrypt.h ├── gsDebug.c ├── gsDebug.h ├── gsLargeInt.c ├── gsLargeInt.h ├── gsMemory.c ├── gsMemory.h ├── gsPlatform.c ├── gsPlatform.h ├── gsPlatformSocket.c ├── gsPlatformSocket.h ├── gsPlatformThread.c ├── gsPlatformThread.h ├── gsPlatformUtil.c ├── gsPlatformUtil.h ├── gsRC4.c ├── gsRC4.h ├── gsResultCodes.c ├── gsResultCodes.h ├── gsSHA1.c ├── gsSHA1.h ├── gsSSL.c ├── gsSSL.h ├── gsStringUtil.c ├── gsStringUtil.h ├── gsUdpEngine.c ├── gsUdpEngine.h ├── gsXML.c ├── gsXML.h ├── hashtable.c ├── hashtable.h ├── linux │ ├── LinuxCommon.c │ ├── changelog.txt │ ├── gsSocketLinux.c │ ├── gsThreadLinux.c │ └── gsUtilLinux.c ├── macosx │ ├── MacOSXCommon.c │ ├── changelog.txt │ ├── gsThreadMacOSX.c │ ├── gsUtilMacOSX.c │ ├── macAutoreleasePool.h │ └── macAutoreleasePool.m ├── md5.h ├── md5c.c ├── nitro │ ├── backup.c │ ├── backup.h │ ├── changelog.txt │ ├── font.c │ ├── font.h │ ├── gsSocketNitro.c │ ├── gsThreadNitro.c │ ├── gsTimerNitro.c │ ├── gsUtilNitro.c │ ├── key.c │ ├── key.h │ ├── main.c │ ├── menu.c │ ├── menu.h │ ├── nitrocommon.cww │ ├── nitrosample │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ ├── nitrosample.c │ │ └── nitrosample.mcp │ ├── screen.c │ ├── screen.h │ ├── touch.c │ ├── touch.h │ ├── wireless.c │ └── wireless.h ├── nonport.c ├── nonport.h ├── ps2 │ ├── Makefile │ ├── Makefile.common │ ├── changelog.txt │ ├── cw │ │ ├── LinkSegment_PS2.lcf │ │ ├── PREFIX_PS2_DEBUG_TC296.h │ │ ├── PREFIX_PS2_RELEASE_TC296.h │ │ ├── cw.cww │ │ ├── cwprefix_eenet_debug.h │ │ ├── cwprefix_eenet_debug_uniqueid.h │ │ ├── cwprefix_eenet_release.h │ │ ├── cwprefix_eenet_release_uniqueid.h │ │ ├── cwprefix_insock_debug.h │ │ ├── cwprefix_insock_debug_uniqueid.h │ │ ├── cwprefix_insock_release.h │ │ ├── cwprefix_insock_release_uniqueid.h │ │ ├── cwprefix_snsystems_debug.h │ │ ├── cwprefix_snsystems_debug_uniqueid.h │ │ ├── cwprefix_snsystems_release.h │ │ └── cwprefix_snsystems_release_uniqueid.h │ ├── ent_cnf │ │ ├── cw │ │ │ ├── LinkSegment_PS2IOP.lcf │ │ │ ├── PREFIX_PS2IOP_DEBUG.h │ │ │ ├── PREFIX_PS2IOP_RELEASE.h │ │ │ └── ent_cnf.mcp │ │ └── prodg │ │ │ ├── ent_cnf.dsp │ │ │ └── ent_cnf.dsw │ ├── gsSocketPs2.c │ ├── gsThreadPs2.c │ ├── gsUtilPs2.c │ ├── prodg │ │ ├── PS2_in_VC.h │ │ ├── prodg.dsw │ │ └── ps2.lk │ ├── ps2common.c │ ├── ps2pad.c │ └── ps2pad.h ├── ps3 │ ├── Makefile.common │ ├── SpeexSpursTaskManager │ │ ├── CellConfiguration.h │ │ ├── CellVectorMath.h │ │ ├── PS3Types.h │ │ ├── SPUAssert.h │ │ ├── SpeexSpursTask │ │ │ ├── SpeexSpursTask_vs2005.vcproj │ │ │ └── SpuSpeexTaskMain.cpp │ │ ├── SpeexSpursTaskManager_vs2005.vcproj │ │ ├── SpuDoubleBuffer.h │ │ ├── SpuFakeDma.h │ │ ├── SpuSpeexTaskOutput.h │ │ ├── SpursSpeexCInterface.cpp │ │ ├── SpursSpeexCInterface.h │ │ ├── SpursSpeexTaskManager.cpp │ │ ├── SpursSpeexTaskManager.h │ │ ├── spursAlignedAllocator.cpp │ │ ├── spursAlignedAllocator.h │ │ ├── spursAlignedObjectArray.h │ │ ├── spursConfiguration.h │ │ ├── spursPlatformDefinitions.h │ │ ├── spursScalar.h │ │ ├── spursSupportInterface.cpp │ │ ├── spursSupportInterface.h │ │ ├── spursThreadSupportInterface.cpp │ │ ├── spursUtilityMacros.h │ │ └── spursthreadsupportinterface.h │ ├── gsSocketPS3.c │ ├── gsUtilPS3.c │ └── ps3common.c ├── psp │ ├── Makefile.common │ ├── gsSocketPSP.c │ ├── gsUtilPSP.c │ └── pspcommon.c ├── psp2 │ ├── gsSocketPSP2.c │ ├── gsUtilPSP2.c │ └── psp2common.c ├── revolution │ ├── gsSocketRevolution.c │ ├── gsThreadRevoulution.c │ ├── gsUtilRevolution.c │ └── revolutionCommon.c ├── win32 │ ├── Win32Common.c │ ├── changelog.txt │ ├── gsSocketWin32.c │ ├── gsThreadWin32.c │ └── gsUtilWin32.c ├── x360 │ ├── X360Common.c │ ├── gsSocketX360.c │ ├── gsThreadX360.c │ └── gsUtilX360.c └── xbox │ └── gsSocketXbox.c ├── doc ├── OpenSDK 2012 merge notes.txt ├── SDK 2.12.00 merge notes missing files to batch.txt ├── SDK Documentation 2007.chm ├── SDK Documentation 2012.chm ├── SDK Documentation Open.chm └── iPhoneReadMe.txt ├── gcdkey ├── CMakeLists.txt ├── CdkeyGen │ ├── CMakeLists.txt │ └── gcdkeygen.c ├── ClientTest │ ├── CMakeLists.txt │ └── gcdkeyclienttest.c ├── ServerTest │ ├── CMakeLists.txt │ └── gcdkeyservertest.c ├── ServerTestQR2 │ ├── CMakeLists.txt │ └── gcdkeyservertest_qr2.c ├── changelog.txt ├── gcdkeyc.c ├── gcdkeyc.h ├── gcdkeys.c └── gcdkeys.h ├── ghttp ├── CMakeLists.txt ├── changelog.txt ├── ghttp.h ├── ghttpASCII.h ├── ghttpBuffer.c ├── ghttpBuffer.h ├── ghttpCallbacks.c ├── ghttpCallbacks.h ├── ghttpCommon.c ├── ghttpCommon.h ├── ghttpConnection.c ├── ghttpConnection.h ├── ghttpEncryption.c ├── ghttpEncryption.h ├── ghttpMain.c ├── ghttpMain.h ├── ghttpPost.c ├── ghttpPost.h ├── ghttpProcess.c ├── ghttpProcess.h ├── ghttpSoap.c ├── ghttpSoap.h ├── ghttpc │ ├── CMakeLists.txt │ ├── ghttpc.c │ ├── ghttpnitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── ghttpnitrocw.mcp │ ├── ghttpps2 │ │ └── Makefile │ ├── ghttpps2cw │ │ └── ghttpps2cw.mcp │ ├── ghttpps2prodg │ │ ├── ghttpps2prodg.dsp │ │ ├── ghttpps2prodg.dsw │ │ ├── ghttpps2prodg.sln │ │ └── ghttpps2prodg.vcproj │ ├── ghttpps3 │ │ └── Makefile │ ├── ghttpps3prodg │ │ ├── ghttpps3prodg.sln │ │ └── ghttpps3prodg.vcproj │ ├── ghttppspprodg │ │ ├── ghttppspprodg.sln │ │ └── ghttppspprodg.vcproj │ ├── ghttprevolutioncw │ │ └── ghttprevolutioncw.mcp │ └── ghttpx360 │ │ ├── ghttpx360.sln │ │ └── ghttpx360.vcproj └── ghttpmfc │ ├── CMakeLists.txt │ ├── StdAfx.h │ ├── ghttpmfc.cpp │ ├── ghttpmfc.h │ ├── ghttpmfc.rc │ ├── ghttpmfcDlg.cpp │ ├── ghttpmfcDlg.h │ ├── res │ ├── ghttpmfc.ico │ └── ghttpmfc.rc2 │ └── resource.h ├── gstats ├── CMakeLists.txt ├── changelog.txt ├── gbucket.c ├── gbucket.h ├── gp_stats │ ├── CMakeLists.txt │ ├── StdAfx.h │ ├── gp_stats.cpp │ ├── gp_stats.h │ ├── gp_stats.rc │ ├── gp_statsDlg.cpp │ ├── gp_statsDlg.h │ ├── res │ │ ├── gp_stats.ico │ │ └── gp_stats.rc2 │ └── resource.h ├── gpersist.h ├── gstats.c ├── gstats.h ├── ladderTrack │ ├── CMakeLists.txt │ ├── HostOrJoinDlg.cpp │ ├── HostOrJoinDlg.h │ ├── LoginDlg.cpp │ ├── LoginDlg.h │ ├── StdAfx.h │ ├── WaitingDlg.cpp │ ├── WaitingDlg.h │ ├── ladderTrack.cpp │ ├── ladderTrack.h │ ├── ladderTrack.rc │ ├── ladderTrackDlg.cpp │ ├── ladderTrackDlg.h │ ├── res │ │ ├── ladderTrack.ico │ │ └── ladderTrack.rc2 │ └── resource.h ├── multiTrack │ ├── CMakeLists.txt │ ├── HostOrJoinDlg.cpp │ ├── HostOrJoinDlg.h │ ├── LoginDlg.cpp │ ├── LoginDlg.h │ ├── StdAfx.h │ ├── WaitingDlg.cpp │ ├── WaitingDlg.h │ ├── multiTrack.cpp │ ├── multiTrack.h │ ├── multiTrack.rc │ ├── multiTrackDlg.cpp │ ├── multiTrackDlg.h │ ├── res │ │ ├── multiTrack.ico │ │ └── multiTrack.rc2 │ └── resource.h ├── persisttest │ ├── CMakeLists.txt │ ├── persistnitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── persistnitrocw.mcp │ ├── persistps2 │ │ └── Makefile │ ├── persistps2cw │ │ └── persistps2cw.mcp │ ├── persistps2prodg │ │ ├── persistps2prodg.dsp │ │ ├── persistps2prodg.dsw │ │ ├── persistps2prodg.sln │ │ └── persistps2prodg.vcproj │ ├── persistps3 │ │ └── Makefile │ ├── persistps3prodg │ │ ├── persistps3prodg.sln │ │ └── persistps3prodg.vcproj │ ├── persistpspprodg │ │ ├── persistpspprodg.sln │ │ └── persistpspprodg.vcproj │ ├── persistrevolutioncw │ │ └── persistrevolutioncw.mcp │ └── persisttest.c ├── statstest │ ├── CMakeLists.txt │ ├── gstatsnitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── gstatsnitrocw.mcp │ ├── gstatsps2 │ │ └── Makefile │ ├── gstatsps2cw │ │ └── gstatsps2cw.mcp │ ├── gstatsps2prodg │ │ ├── gstatsps2prodg.dsp │ │ ├── gstatsps2prodg.dsw │ │ ├── gstatsps2prodg.sln │ │ └── gstatsps2prodg.vcproj │ ├── gstatsps3 │ │ └── Makefile │ ├── gstatsps3prodg │ │ ├── gstatsps3prodg.sln │ │ └── gstatsps3prodg.vcproj │ ├── gstatspspprodg │ │ ├── gstatspspprodg.sln │ │ └── gstatspspprodg.vcproj │ ├── gstatsrevolutioncw │ │ └── gstatsrevolutioncw.mcp │ └── statstest.c └── track │ ├── CMakeLists.txt │ ├── LoginDlg.cpp │ ├── LoginDlg.h │ ├── StdAfx.h │ ├── res │ ├── track.ico │ └── track.rc2 │ ├── resource.h │ ├── track.cpp │ ├── track.h │ ├── track.rc │ ├── trackDlg.cpp │ └── trackDlg.h ├── gt2 ├── CMakeLists.txt ├── changelog.txt ├── gt2.h ├── gt2Auth.c ├── gt2Auth.h ├── gt2Buffer.c ├── gt2Buffer.h ├── gt2Callback.c ├── gt2Callback.h ├── gt2Connection.c ├── gt2Connection.h ├── gt2Encode.c ├── gt2Encode.h ├── gt2Filter.c ├── gt2Filter.h ├── gt2Main.c ├── gt2Main.h ├── gt2Message.c ├── gt2Message.h ├── gt2Socket.c ├── gt2Socket.h ├── gt2Utility.c ├── gt2Utility.h ├── gt2action │ ├── TGAFile.cpp │ ├── TGAFile.h │ ├── freeglut-msvc │ │ ├── Copying.txt │ │ ├── Readme.txt │ │ ├── bin │ │ │ ├── freeglut.dll │ │ │ └── x64 │ │ │ │ └── freeglut.dll │ │ ├── include │ │ │ └── GL │ │ │ │ ├── freeglut.h │ │ │ │ ├── freeglut_ext.h │ │ │ │ ├── freeglut_std.h │ │ │ │ └── glut.h │ │ └── lib │ │ │ ├── freeglut.lib │ │ │ └── x64 │ │ │ └── freeglut.lib │ ├── gt2aClient.c │ ├── gt2aClient.h │ ├── gt2aDisplay.c │ ├── gt2aDisplay.h │ ├── gt2aInput.c │ ├── gt2aInput.h │ ├── gt2aLogic.c │ ├── gt2aLogic.h │ ├── gt2aMain.c │ ├── gt2aMain.h │ ├── gt2aMath.c │ ├── gt2aMath.h │ ├── gt2aParse.c │ ├── gt2aParse.h │ ├── gt2aServer.c │ ├── gt2aServer.h │ ├── gt2aSound.c │ ├── gt2aSound.h │ ├── gt2action.vcxproj │ ├── gt2action.vcxproj.filters │ ├── images │ │ ├── asteroid0.tga │ │ ├── asteroid1.tga │ │ ├── asteroid2.tga │ │ ├── explosion0.tga │ │ ├── explosion1.tga │ │ ├── mine0.tga │ │ ├── mine1.tga │ │ ├── mine2.tga │ │ ├── rocket0.tga │ │ ├── rocket1.tga │ │ ├── rocket2.tga │ │ ├── rocket3.tga │ │ ├── ship0.tga │ │ ├── ship1.tga │ │ ├── space.tga │ │ ├── spinner0.tga │ │ ├── spinner1.tga │ │ └── spinner2.tga │ ├── messages.txt │ ├── sounds │ │ ├── die.wav │ │ ├── explosion.wav │ │ ├── mine.wav │ │ ├── pickup.wav │ │ └── rocket.wav │ └── todo.txt ├── gt2hostmig │ ├── CMakeLists.txt │ └── gt2hostmig.c ├── gt2nat │ ├── CMakeLists.txt │ └── gt2nat.c ├── gt2proxy │ ├── CMakeLists.txt │ └── gt2proxy.c ├── gt2test │ ├── CMakeLists.txt │ ├── StdAfx.h │ ├── gt2test.cpp │ ├── gt2test.h │ ├── gt2test.rc │ ├── gt2testDlg.cpp │ ├── gt2testDlg.h │ ├── res │ │ ├── gt2test.ico │ │ └── gt2test.rc2 │ └── resource.h └── gt2testc │ ├── CMakeLists.txt │ ├── gt2nitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── gt2nitrocw.mcp │ ├── gt2ps2 │ └── Makefile │ ├── gt2ps2cw │ └── gt2ps2cw.mcp │ ├── gt2ps2prodg │ ├── gt2ps2prodg.dsp │ ├── gt2ps2prodg.dsw │ ├── gt2ps2prodg.sln │ └── gt2ps2prodg.vcproj │ ├── gt2ps3 │ └── Makefile │ ├── gt2ps3prodg │ ├── gt2ps3prodg.sln │ └── gt2ps3prodg.vcproj │ ├── gt2pspprodg │ ├── gt2pspprodg.sln │ └── gt2pspprodg.vcproj │ ├── gt2revolutioncw │ └── gt2revolutioncw.mcp │ ├── gt2testc.c │ └── gt2x360 │ ├── gt2x360.sln │ └── gt2x360.vcproj ├── natneg ├── CMakeLists.txt ├── NATify.c ├── NATify.h ├── changelog.txt ├── natneg.c ├── natneg.h ├── nninternal.h └── simpletest │ ├── CMakeLists.txt │ ├── natnegnitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── natnegnitrocw.mcp │ ├── natnegps2 │ └── Makefile │ ├── natnegps2cw │ └── natnegps2cw.mcp │ ├── natnegps2prodg │ ├── natnegps2prodg.dsp │ ├── natnegps2prodg.dsw │ ├── natnegps2prodg.sln │ └── natnegps2prodg.vcproj │ ├── natnegps3 │ └── Makefile │ ├── natnegps3prodg │ ├── natnegps3prodg.sln │ └── natnegps3prodg.vcproj │ ├── natnegpsp │ └── Makefile │ ├── natnegpspprodg │ ├── natnegpspprodg.sln │ └── natnegpspprodg.vcproj │ ├── natnegrevolutioncw │ └── natnegrevolutioncw.mcp │ └── simpletest.c ├── pinger ├── CMakeLists.txt ├── pingTest │ ├── CMakeLists.txt │ └── pingTest.c ├── pinger.h └── pingerMain.c ├── pt ├── CMakeLists.txt ├── changelog.txt ├── pt.h ├── ptMain.c └── pttestc │ ├── CMakeLists.txt │ ├── ptnitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── ptnitrocw.mcp │ ├── ptps2 │ └── Makefile │ ├── ptps2cw │ └── ptps2cw.mcp │ ├── ptps2prodg │ ├── ptps2prodg.dsp │ ├── ptps2prodg.dsw │ ├── ptps2prodg.sln │ └── ptps2prodg.vcproj │ ├── ptps3prodg │ ├── ptps3prodg.sln │ └── ptps3prodg.vcproj │ ├── ptpspprodg │ ├── ptpspprodg.sln │ └── ptpspprodg.vcproj │ ├── ptrevolutioncw │ └── ptrevolutioncw.mcp │ └── pttestc.c ├── qr2 ├── CMakeLists.txt ├── changelog.txt ├── qr2.c ├── qr2.h ├── qr2csample │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── qr2csample.c │ ├── qr2nitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── qr2nitrocw.mcp │ ├── qr2ps2 │ │ └── Makefile │ ├── qr2ps2cw │ │ └── qr2ps2cw.mcp │ ├── qr2ps2prodg │ │ ├── qr2ps2prodg.dsp │ │ ├── qr2ps2prodg.dsw │ │ ├── qr2ps2prodg.sln │ │ └── qr2ps2prodg.vcproj │ ├── qr2ps3 │ │ └── Makefile │ ├── qr2ps3prodg │ │ ├── qr2ps3prodg.sln │ │ └── qr2ps3prodg.vcproj │ ├── qr2psp │ │ └── Makefile │ ├── qr2pspprodg │ │ ├── qr2pspprodg.sln │ │ └── qr2pspprodg.vcproj │ ├── qr2revolutioncw │ │ └── qr2revolutioncw.mcp │ └── qr2x360 │ │ ├── qr2x360.sln │ │ └── qr2x360.vcproj ├── qr2regkeys.c └── qr2regkeys.h ├── sake ├── CMakeLists.txt ├── changelog.txt ├── sake.h ├── sakeMain.c ├── sakeMain.h ├── sakeRequest.c ├── sakeRequest.h ├── sakeRequestInternal.h ├── sakeRequestMisc.c ├── sakeRequestModify.c ├── sakeRequestRead.c └── saketest │ ├── CMakeLists.txt │ ├── sakenitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── sakenitrocw.mcp │ ├── sakeps2prodg │ ├── sakeps2prodg.sln │ └── sakeps2prodg.vcproj │ ├── sakeps3prodg │ ├── sakeps3prodg.sln │ └── sakeps3prodg.vcproj │ ├── sakepspprodg │ ├── sakepspprodg.sln │ └── sakepspprodg.vcproj │ ├── sakerevolutioncw │ └── sakerevolutioncw.mcp │ ├── saketest.c │ └── sakex360 │ ├── sakex360.sln │ └── sakex360.vcproj ├── sc ├── CMakeLists.txt ├── changelog.txt ├── sc.h ├── scRaceSample │ ├── CMakeLists.txt │ ├── HostOrJoinDlg.cpp │ ├── HostOrJoinDlg.h │ ├── LoginDlg.cpp │ ├── LoginDlg.h │ ├── ReadMe.txt │ ├── ScRaceSample.cpp │ ├── ScRaceSample.h │ ├── ScRaceSample.rc │ ├── ScRaceSampleDlg.cpp │ ├── ScRaceSampleDlg.h │ ├── StdAfx.h │ ├── WaitingDlg.cpp │ ├── WaitingDlg.h │ ├── atlas_Competition_Race_Sample_App_v1.h │ ├── atlas_sc_race_v1.c │ ├── atlas_sc_race_v1.h │ ├── res │ │ ├── ScRaceSample.ico │ │ └── ScRaceSample.rc2 │ └── resource.h ├── sci.h ├── sciInterface.c ├── sciInterface.h ├── sciMain.c ├── sciReport.c ├── sciReport.h ├── sciSerialize.c ├── sciSerialize.h ├── sciWebServices.c ├── sciWebServices.h ├── sctest │ ├── CMakeLists.txt │ ├── scnitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── scnitrocw.mcp │ ├── scps2prodg │ │ ├── scps2prodg.sln │ │ └── scps2prodg.vcproj │ ├── scps3prodg │ │ ├── scps3prodg.sln │ │ └── scps3prodg.vcproj │ ├── scpspprodg │ │ ├── scpspprodg.sln │ │ └── scpspprodg.vcproj │ ├── screvolutioncw │ │ └── screvolutioncw.mcp │ ├── sctest.c │ └── scx360 │ │ ├── scx360.sln │ │ └── scx360.vcproj └── sctestmatchless │ ├── CMakeLists.txt │ ├── scnitrocw │ ├── Nitro.lcf │ ├── ROM-TS.rsf │ └── scnitrocw.mcp │ ├── scps2prodg │ ├── scps2prodg.sln │ └── scps2prodg.vcproj │ ├── scps3prodg │ ├── scps3prodg.sln │ └── scps3prodg.vcproj │ ├── scpspprodg │ ├── scpspprodg.sln │ └── scpspprodg.vcproj │ └── sctestmatchless.c ├── serverbrowsing ├── CMakeLists.txt ├── changelog.txt ├── querytest │ ├── CMakeLists.txt │ └── querytest.c ├── sb_ascii.h ├── sb_crypt.c ├── sb_crypt.h ├── sb_internal.h ├── sb_queryengine.c ├── sb_server.c ├── sb_serverbrowsing.c ├── sb_serverbrowsing.h ├── sb_serverlist.c ├── sbctest │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── sbctest.c │ ├── sbnitrocw │ │ ├── Nitro.lcf │ │ ├── ROM-TS.rsf │ │ └── sbnitrocw.mcp │ ├── sbps2 │ │ └── Makefile │ ├── sbps2cw │ │ └── sbps2cw.mcp │ ├── sbps2prodg │ │ ├── sbps2prodg.dsp │ │ ├── sbps2prodg.dsw │ │ ├── sbps2prodg.sln │ │ └── sbps2prodg.vcproj │ ├── sbps3 │ │ └── Makefile │ ├── sbps3prodg │ │ ├── sbps3prodg.sln │ │ └── sbps3prodg.vcproj │ ├── sbpsp │ │ └── Makefile │ ├── sbpspprodg │ │ ├── sbpspprodg.sln │ │ └── sbpspprodg.vcproj │ ├── sbrevolutioncw │ │ └── sbrevolutioncw.mcp │ └── sbx360 │ │ ├── sbx360.sln │ │ └── sbx360.vcproj └── sbmfcsample │ ├── CMakeLists.txt │ ├── StdAfx.h │ ├── res │ ├── sbmfcsample.ico │ └── sbmfcsample.rc2 │ ├── resource.h │ ├── sbmfcsample.cpp │ ├── sbmfcsample.h │ ├── sbmfcsample.rc │ ├── sbmfcsampleDlg.cpp │ └── sbmfcsampleDlg.h ├── sharedDll ├── CMakeLists.txt └── dllmain.c └── webservices ├── AuthService.c ├── AuthService.h ├── CMakeLists.txt ├── RacingService.c ├── RacingService.h └── authtest ├── CMakeLists.txt ├── authps3prodg ├── authps3prodg.sln └── authps3prodg.vcproj ├── authpspprodg ├── authpspprodg.sln └── authpspprodg.vcproj └── authtest.c /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Chat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/CMakeLists.txt -------------------------------------------------------------------------------- /Chat/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/changelog.txt -------------------------------------------------------------------------------- /Chat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chat.h -------------------------------------------------------------------------------- /Chat/chatASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatASCII.h -------------------------------------------------------------------------------- /Chat/chatCallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatCallbacks.c -------------------------------------------------------------------------------- /Chat/chatCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatCallbacks.h -------------------------------------------------------------------------------- /Chat/chatChannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatChannel.c -------------------------------------------------------------------------------- /Chat/chatChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatChannel.h -------------------------------------------------------------------------------- /Chat/chatCrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatCrypt.c -------------------------------------------------------------------------------- /Chat/chatCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatCrypt.h -------------------------------------------------------------------------------- /Chat/chatHandlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatHandlers.c -------------------------------------------------------------------------------- /Chat/chatHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatHandlers.h -------------------------------------------------------------------------------- /Chat/chatMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatMain.c -------------------------------------------------------------------------------- /Chat/chatMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatMain.h -------------------------------------------------------------------------------- /Chat/chatSocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatSocket.c -------------------------------------------------------------------------------- /Chat/chatSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatSocket.h -------------------------------------------------------------------------------- /Chat/chatc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/CMakeLists.txt -------------------------------------------------------------------------------- /Chat/chatc/chatc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatc.c -------------------------------------------------------------------------------- /Chat/chatc/chatnitrocw/Nitro.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatnitrocw/Nitro.lcf -------------------------------------------------------------------------------- /Chat/chatc/chatnitrocw/ROM-TS.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatnitrocw/ROM-TS.rsf -------------------------------------------------------------------------------- /Chat/chatc/chatps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatps2/Makefile -------------------------------------------------------------------------------- /Chat/chatc/chatps2cw/chatps2cw.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatps2cw/chatps2cw.mcp -------------------------------------------------------------------------------- /Chat/chatc/chatps3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatps3/Makefile -------------------------------------------------------------------------------- /Chat/chatc/chatpsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatc/chatpsp/Makefile -------------------------------------------------------------------------------- /Chat/chatty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/CMakeLists.txt -------------------------------------------------------------------------------- /Chat/chatty/ChannelListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ChannelListDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/ChannelListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ChannelListDlg.h -------------------------------------------------------------------------------- /Chat/chatty/ChannelModeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ChannelModeDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/ChannelModeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ChannelModeDlg.h -------------------------------------------------------------------------------- /Chat/chatty/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ChildFrm.cpp -------------------------------------------------------------------------------- /Chat/chatty/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ChildFrm.h -------------------------------------------------------------------------------- /Chat/chatty/ConnectDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ConnectDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/ConnectDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/ConnectDlg.h -------------------------------------------------------------------------------- /Chat/chatty/EnterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/EnterDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/EnterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/EnterDlg.h -------------------------------------------------------------------------------- /Chat/chatty/GetUserInfoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/GetUserInfoDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/GetUserInfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/GetUserInfoDlg.h -------------------------------------------------------------------------------- /Chat/chatty/KickReasonDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/KickReasonDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/KickReasonDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/KickReasonDlg.h -------------------------------------------------------------------------------- /Chat/chatty/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/MainFrm.cpp -------------------------------------------------------------------------------- /Chat/chatty/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/MainFrm.h -------------------------------------------------------------------------------- /Chat/chatty/SendRawDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/SendRawDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/SendRawDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/SendRawDlg.h -------------------------------------------------------------------------------- /Chat/chatty/SetPasswordDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/SetPasswordDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/SetPasswordDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/SetPasswordDlg.h -------------------------------------------------------------------------------- /Chat/chatty/SetTopicDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/SetTopicDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/SetTopicDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/SetTopicDlg.h -------------------------------------------------------------------------------- /Chat/chatty/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/StdAfx.h -------------------------------------------------------------------------------- /Chat/chatty/TalkDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/TalkDlg.cpp -------------------------------------------------------------------------------- /Chat/chatty/TalkDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/TalkDlg.h -------------------------------------------------------------------------------- /Chat/chatty/chatty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chatty.cpp -------------------------------------------------------------------------------- /Chat/chatty/chatty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chatty.h -------------------------------------------------------------------------------- /Chat/chatty/chatty.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chatty.rc -------------------------------------------------------------------------------- /Chat/chatty/chattyDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chattyDoc.cpp -------------------------------------------------------------------------------- /Chat/chatty/chattyDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chattyDoc.h -------------------------------------------------------------------------------- /Chat/chatty/chattyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chattyView.cpp -------------------------------------------------------------------------------- /Chat/chatty/chattyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/chattyView.h -------------------------------------------------------------------------------- /Chat/chatty/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/res/Toolbar.bmp -------------------------------------------------------------------------------- /Chat/chatty/res/chatty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/res/chatty.ico -------------------------------------------------------------------------------- /Chat/chatty/res/chatty.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/res/chatty.rc2 -------------------------------------------------------------------------------- /Chat/chatty/res/chattyDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/res/chattyDoc.ico -------------------------------------------------------------------------------- /Chat/chatty/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Chat/chatty/resource.h -------------------------------------------------------------------------------- /Direct2Game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/CMakeLists.txt -------------------------------------------------------------------------------- /Direct2Game/Direct2Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/Direct2Game.h -------------------------------------------------------------------------------- /Direct2Game/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/changelog.txt -------------------------------------------------------------------------------- /Direct2Game/d2gDeserialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gDeserialize.c -------------------------------------------------------------------------------- /Direct2Game/d2gDeserialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gDeserialize.h -------------------------------------------------------------------------------- /Direct2Game/d2gDownloads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gDownloads.c -------------------------------------------------------------------------------- /Direct2Game/d2gDownloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gDownloads.h -------------------------------------------------------------------------------- /Direct2Game/d2gMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gMain.c -------------------------------------------------------------------------------- /Direct2Game/d2gMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gMain.h -------------------------------------------------------------------------------- /Direct2Game/d2gServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gServices.c -------------------------------------------------------------------------------- /Direct2Game/d2gServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gServices.h -------------------------------------------------------------------------------- /Direct2Game/d2gUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gUtil.c -------------------------------------------------------------------------------- /Direct2Game/d2gUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Direct2Game/d2gUtil.h -------------------------------------------------------------------------------- /GP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/CMakeLists.txt -------------------------------------------------------------------------------- /GP/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/changelog.txt -------------------------------------------------------------------------------- /GP/gp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gp.c -------------------------------------------------------------------------------- /GP/gp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gp.h -------------------------------------------------------------------------------- /GP/gpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpi.c -------------------------------------------------------------------------------- /GP/gpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpi.h -------------------------------------------------------------------------------- /GP/gpiBuddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiBuddy.c -------------------------------------------------------------------------------- /GP/gpiBuddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiBuddy.h -------------------------------------------------------------------------------- /GP/gpiBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiBuffer.c -------------------------------------------------------------------------------- /GP/gpiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiBuffer.h -------------------------------------------------------------------------------- /GP/gpiCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiCallback.c -------------------------------------------------------------------------------- /GP/gpiCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiCallback.h -------------------------------------------------------------------------------- /GP/gpiConnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiConnect.c -------------------------------------------------------------------------------- /GP/gpiConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiConnect.h -------------------------------------------------------------------------------- /GP/gpiInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiInfo.c -------------------------------------------------------------------------------- /GP/gpiInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiInfo.h -------------------------------------------------------------------------------- /GP/gpiKeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiKeys.c -------------------------------------------------------------------------------- /GP/gpiKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiKeys.h -------------------------------------------------------------------------------- /GP/gpiOperation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiOperation.c -------------------------------------------------------------------------------- /GP/gpiOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiOperation.h -------------------------------------------------------------------------------- /GP/gpiPS3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiPS3.c -------------------------------------------------------------------------------- /GP/gpiPS3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiPS3.h -------------------------------------------------------------------------------- /GP/gpiPeer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiPeer.c -------------------------------------------------------------------------------- /GP/gpiPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiPeer.h -------------------------------------------------------------------------------- /GP/gpiProfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiProfile.c -------------------------------------------------------------------------------- /GP/gpiProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiProfile.h -------------------------------------------------------------------------------- /GP/gpiSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiSearch.c -------------------------------------------------------------------------------- /GP/gpiSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiSearch.h -------------------------------------------------------------------------------- /GP/gpiTransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiTransfer.c -------------------------------------------------------------------------------- /GP/gpiTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiTransfer.h -------------------------------------------------------------------------------- /GP/gpiUnique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiUnique.c -------------------------------------------------------------------------------- /GP/gpiUnique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiUnique.h -------------------------------------------------------------------------------- /GP/gpiUtility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiUtility.c -------------------------------------------------------------------------------- /GP/gpiUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpiUtility.h -------------------------------------------------------------------------------- /GP/gpstress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpstress/CMakeLists.txt -------------------------------------------------------------------------------- /GP/gpstress/gpstress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gpstress/gpstress.c -------------------------------------------------------------------------------- /GP/gptest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/CMakeLists.txt -------------------------------------------------------------------------------- /GP/gptest/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/StdAfx.h -------------------------------------------------------------------------------- /GP/gptest/gptest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/gptest.cpp -------------------------------------------------------------------------------- /GP/gptest/gptest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/gptest.h -------------------------------------------------------------------------------- /GP/gptest/gptest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/gptest.rc -------------------------------------------------------------------------------- /GP/gptest/gptestDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/gptestDlg.cpp -------------------------------------------------------------------------------- /GP/gptest/gptestDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/gptestDlg.h -------------------------------------------------------------------------------- /GP/gptest/res/gptest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/res/gptest.ico -------------------------------------------------------------------------------- /GP/gptest/res/gptest.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/res/gptest.rc2 -------------------------------------------------------------------------------- /GP/gptest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptest/resource.h -------------------------------------------------------------------------------- /GP/gptestc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/CMakeLists.txt -------------------------------------------------------------------------------- /GP/gptestc/gpnitrocw/Nitro.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpnitrocw/Nitro.lcf -------------------------------------------------------------------------------- /GP/gptestc/gpnitrocw/ROM-TS.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpnitrocw/ROM-TS.rsf -------------------------------------------------------------------------------- /GP/gptestc/gpnitrocw/gpnitrocw.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpnitrocw/gpnitrocw.mcp -------------------------------------------------------------------------------- /GP/gptestc/gpps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps2/Makefile -------------------------------------------------------------------------------- /GP/gptestc/gpps2cw/gpps2cw.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps2cw/gpps2cw.mcp -------------------------------------------------------------------------------- /GP/gptestc/gpps2prodg/gpps2prodg.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps2prodg/gpps2prodg.dsp -------------------------------------------------------------------------------- /GP/gptestc/gpps2prodg/gpps2prodg.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps2prodg/gpps2prodg.dsw -------------------------------------------------------------------------------- /GP/gptestc/gpps2prodg/gpps2prodg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps2prodg/gpps2prodg.sln -------------------------------------------------------------------------------- /GP/gptestc/gpps3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps3/Makefile -------------------------------------------------------------------------------- /GP/gptestc/gpps3prodg/gpps3prodg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpps3prodg/gpps3prodg.sln -------------------------------------------------------------------------------- /GP/gptestc/gppsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gppsp/Makefile -------------------------------------------------------------------------------- /GP/gptestc/gppspprodg/gppspprodg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gppspprodg/gppspprodg.sln -------------------------------------------------------------------------------- /GP/gptestc/gptestc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gptestc.c -------------------------------------------------------------------------------- /GP/gptestc/gpx360/gpx360.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpx360/gpx360.sln -------------------------------------------------------------------------------- /GP/gptestc/gpx360/gpx360.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/GP/gptestc/gpx360/gpx360.vcproj -------------------------------------------------------------------------------- /Gamespy.CSWrapper/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Gamespy.CSWrapper/app.config -------------------------------------------------------------------------------- /Gamespy.CSWrapper/gamespy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Gamespy.CSWrapper/gamespy.sln -------------------------------------------------------------------------------- /Gamespy.CSWrapper/samples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Gamespy.CSWrapper/samples/Program.cs -------------------------------------------------------------------------------- /Gamespy.CSWrapper/src/gamespyAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Gamespy.CSWrapper/src/gamespyAuth.cs -------------------------------------------------------------------------------- /Gamespy.CSWrapper/src/gamespyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Gamespy.CSWrapper/src/gamespyBase.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Peer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/CMakeLists.txt -------------------------------------------------------------------------------- /Peer/PeerLobby/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/CMakeLists.txt -------------------------------------------------------------------------------- /Peer/PeerLobby/ConnectPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/ConnectPage.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/ConnectPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/ConnectPage.h -------------------------------------------------------------------------------- /Peer/PeerLobby/CreatePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/CreatePage.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/CreatePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/CreatePage.h -------------------------------------------------------------------------------- /Peer/PeerLobby/GroupPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/GroupPage.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/GroupPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/GroupPage.h -------------------------------------------------------------------------------- /Peer/PeerLobby/LobbyWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/LobbyWizard.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/LobbyWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/LobbyWizard.h -------------------------------------------------------------------------------- /Peer/PeerLobby/PeerLobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/PeerLobby.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/PeerLobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/PeerLobby.h -------------------------------------------------------------------------------- /Peer/PeerLobby/PeerLobby.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/PeerLobby.rc -------------------------------------------------------------------------------- /Peer/PeerLobby/SideBarCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/SideBarCtrl.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/SideBarCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/SideBarCtrl.h -------------------------------------------------------------------------------- /Peer/PeerLobby/StagingPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/StagingPage.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/StagingPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/StagingPage.h -------------------------------------------------------------------------------- /Peer/PeerLobby/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/StdAfx.h -------------------------------------------------------------------------------- /Peer/PeerLobby/TitlePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/TitlePage.cpp -------------------------------------------------------------------------------- /Peer/PeerLobby/TitlePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/TitlePage.h -------------------------------------------------------------------------------- /Peer/PeerLobby/res/PeerLobby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/PeerLobby.ico -------------------------------------------------------------------------------- /Peer/PeerLobby/res/PeerLobby.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/PeerLobby.rc2 -------------------------------------------------------------------------------- /Peer/PeerLobby/res/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/ico00001.ico -------------------------------------------------------------------------------- /Peer/PeerLobby/res/ico00002.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/ico00002.ico -------------------------------------------------------------------------------- /Peer/PeerLobby/res/ico00003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/ico00003.ico -------------------------------------------------------------------------------- /Peer/PeerLobby/res/ico00004.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/ico00004.ico -------------------------------------------------------------------------------- /Peer/PeerLobby/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/res/icon1.ico -------------------------------------------------------------------------------- /Peer/PeerLobby/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerLobby/resource.h -------------------------------------------------------------------------------- /Peer/PeerTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/CMakeLists.txt -------------------------------------------------------------------------------- /Peer/PeerTest/PeerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/PeerTest.cpp -------------------------------------------------------------------------------- /Peer/PeerTest/PeerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/PeerTest.h -------------------------------------------------------------------------------- /Peer/PeerTest/PeerTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/PeerTest.rc -------------------------------------------------------------------------------- /Peer/PeerTest/PeerTestDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/PeerTestDlg.cpp -------------------------------------------------------------------------------- /Peer/PeerTest/PeerTestDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/PeerTestDlg.h -------------------------------------------------------------------------------- /Peer/PeerTest/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/StdAfx.h -------------------------------------------------------------------------------- /Peer/PeerTest/res/PeerTest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/res/PeerTest.ico -------------------------------------------------------------------------------- /Peer/PeerTest/res/PeerTest.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/res/PeerTest.rc2 -------------------------------------------------------------------------------- /Peer/PeerTest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/PeerTest/resource.h -------------------------------------------------------------------------------- /Peer/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/changelog.txt -------------------------------------------------------------------------------- /Peer/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peer.h -------------------------------------------------------------------------------- /Peer/peerAscii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerAscii.h -------------------------------------------------------------------------------- /Peer/peerAutoMatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerAutoMatch.c -------------------------------------------------------------------------------- /Peer/peerAutoMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerAutoMatch.h -------------------------------------------------------------------------------- /Peer/peerCallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerCallbacks.c -------------------------------------------------------------------------------- /Peer/peerCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerCallbacks.h -------------------------------------------------------------------------------- /Peer/peerGlobalCallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerGlobalCallbacks.c -------------------------------------------------------------------------------- /Peer/peerGlobalCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerGlobalCallbacks.h -------------------------------------------------------------------------------- /Peer/peerHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerHost.c -------------------------------------------------------------------------------- /Peer/peerHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerHost.h -------------------------------------------------------------------------------- /Peer/peerKeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerKeys.c -------------------------------------------------------------------------------- /Peer/peerKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerKeys.h -------------------------------------------------------------------------------- /Peer/peerMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerMain.c -------------------------------------------------------------------------------- /Peer/peerMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerMain.h -------------------------------------------------------------------------------- /Peer/peerMangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerMangle.c -------------------------------------------------------------------------------- /Peer/peerMangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerMangle.h -------------------------------------------------------------------------------- /Peer/peerOperations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerOperations.c -------------------------------------------------------------------------------- /Peer/peerOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerOperations.h -------------------------------------------------------------------------------- /Peer/peerPing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerPing.c -------------------------------------------------------------------------------- /Peer/peerPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerPing.h -------------------------------------------------------------------------------- /Peer/peerPlayers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerPlayers.c -------------------------------------------------------------------------------- /Peer/peerPlayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerPlayers.h -------------------------------------------------------------------------------- /Peer/peerQR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerQR.c -------------------------------------------------------------------------------- /Peer/peerQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerQR.h -------------------------------------------------------------------------------- /Peer/peerRooms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerRooms.c -------------------------------------------------------------------------------- /Peer/peerRooms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerRooms.h -------------------------------------------------------------------------------- /Peer/peerSB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerSB.c -------------------------------------------------------------------------------- /Peer/peerSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerSB.h -------------------------------------------------------------------------------- /Peer/peerc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/CMakeLists.txt -------------------------------------------------------------------------------- /Peer/peerc/peerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/peerc.c -------------------------------------------------------------------------------- /Peer/peerc/peernitrocw/Nitro.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/peernitrocw/Nitro.lcf -------------------------------------------------------------------------------- /Peer/peerc/peernitrocw/ROM-TS.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/peernitrocw/ROM-TS.rsf -------------------------------------------------------------------------------- /Peer/peerc/peerps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/peerps2/Makefile -------------------------------------------------------------------------------- /Peer/peerc/peerps3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/peerps3/Makefile -------------------------------------------------------------------------------- /Peer/peerc/peerpsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Peer/peerc/peerpsp/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/README.md -------------------------------------------------------------------------------- /Samples/GameSpySamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/GameSpySamples.sln -------------------------------------------------------------------------------- /Samples/ReportStats/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/ReportStats/ReadMe.txt -------------------------------------------------------------------------------- /Samples/TapRace/iphone/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/TapRace/iphone/Utility.h -------------------------------------------------------------------------------- /Samples/TapRace/iphone/Utility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/TapRace/iphone/Utility.mm -------------------------------------------------------------------------------- /Samples/TapRace/iphone/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/TapRace/iphone/main.mm -------------------------------------------------------------------------------- /Samples/sampleCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/sampleCommon.c -------------------------------------------------------------------------------- /Samples/sampleCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Samples/sampleCommon.h -------------------------------------------------------------------------------- /Voice2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/CMakeLists.txt -------------------------------------------------------------------------------- /Voice2/Voice2BuddyMFC/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/Voice2BuddyMFC/LoginDlg.h -------------------------------------------------------------------------------- /Voice2/Voice2BuddyMFC/SetupDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/Voice2BuddyMFC/SetupDlg.h -------------------------------------------------------------------------------- /Voice2/Voice2BuddyMFC/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/Voice2BuddyMFC/StdAfx.h -------------------------------------------------------------------------------- /Voice2/Voice2BuddyMFC/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/Voice2BuddyMFC/resource.h -------------------------------------------------------------------------------- /Voice2/Voice2Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/Voice2Test/CMakeLists.txt -------------------------------------------------------------------------------- /Voice2/Voice2Test/Voice2Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/Voice2Test/Voice2Test.c -------------------------------------------------------------------------------- /Voice2/Voice2Test/gvps3prodgspeexspu/vsi.nul: -------------------------------------------------------------------------------- 1 | IMPORTANT: Do not remove the custom build step for this file -------------------------------------------------------------------------------- /Voice2/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/changelog.txt -------------------------------------------------------------------------------- /Voice2/gv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gv.h -------------------------------------------------------------------------------- /Voice2/gvCodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvCodec.c -------------------------------------------------------------------------------- /Voice2/gvCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvCodec.h -------------------------------------------------------------------------------- /Voice2/gvCustomDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvCustomDevice.c -------------------------------------------------------------------------------- /Voice2/gvCustomDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvCustomDevice.h -------------------------------------------------------------------------------- /Voice2/gvDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvDevice.c -------------------------------------------------------------------------------- /Voice2/gvDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvDevice.h -------------------------------------------------------------------------------- /Voice2/gvDirectSound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvDirectSound.c -------------------------------------------------------------------------------- /Voice2/gvDirectSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvDirectSound.h -------------------------------------------------------------------------------- /Voice2/gvFrame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvFrame.c -------------------------------------------------------------------------------- /Voice2/gvFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvFrame.h -------------------------------------------------------------------------------- /Voice2/gvGSM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvGSM.c -------------------------------------------------------------------------------- /Voice2/gvGSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvGSM.h -------------------------------------------------------------------------------- /Voice2/gvLogitechPS2Codecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvLogitechPS2Codecs.c -------------------------------------------------------------------------------- /Voice2/gvLogitechPS2Codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvLogitechPS2Codecs.h -------------------------------------------------------------------------------- /Voice2/gvMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvMain.c -------------------------------------------------------------------------------- /Voice2/gvMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvMain.h -------------------------------------------------------------------------------- /Voice2/gvOSXAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvOSXAudio.c -------------------------------------------------------------------------------- /Voice2/gvOSXAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvOSXAudio.h -------------------------------------------------------------------------------- /Voice2/gvPS2Audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Audio.c -------------------------------------------------------------------------------- /Voice2/gvPS2Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Audio.h -------------------------------------------------------------------------------- /Voice2/gvPS2Eyetoy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Eyetoy.c -------------------------------------------------------------------------------- /Voice2/gvPS2Eyetoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Eyetoy.h -------------------------------------------------------------------------------- /Voice2/gvPS2Headset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Headset.c -------------------------------------------------------------------------------- /Voice2/gvPS2Headset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Headset.h -------------------------------------------------------------------------------- /Voice2/gvPS2Spu2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Spu2.c -------------------------------------------------------------------------------- /Voice2/gvPS2Spu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS2Spu2.h -------------------------------------------------------------------------------- /Voice2/gvPS3Audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS3Audio.c -------------------------------------------------------------------------------- /Voice2/gvPS3Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS3Audio.h -------------------------------------------------------------------------------- /Voice2/gvPS3Headset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS3Headset.c -------------------------------------------------------------------------------- /Voice2/gvPS3Headset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPS3Headset.h -------------------------------------------------------------------------------- /Voice2/gvPSPAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPSPAudio.c -------------------------------------------------------------------------------- /Voice2/gvPSPAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvPSPAudio.h -------------------------------------------------------------------------------- /Voice2/gvSource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvSource.c -------------------------------------------------------------------------------- /Voice2/gvSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvSource.h -------------------------------------------------------------------------------- /Voice2/gvSpeex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvSpeex.c -------------------------------------------------------------------------------- /Voice2/gvSpeex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvSpeex.h -------------------------------------------------------------------------------- /Voice2/gvSpeexSpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvSpeexSpu.c -------------------------------------------------------------------------------- /Voice2/gvSpeexSpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvSpeexSpu.h -------------------------------------------------------------------------------- /Voice2/gvUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvUtil.c -------------------------------------------------------------------------------- /Voice2/gvUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/gvUtil.h -------------------------------------------------------------------------------- /Voice2/libgsm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/CMakeLists.txt -------------------------------------------------------------------------------- /Voice2/libgsm/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/COPYRIGHT -------------------------------------------------------------------------------- /Voice2/libgsm/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/ChangeLog -------------------------------------------------------------------------------- /Voice2/libgsm/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/INSTALL -------------------------------------------------------------------------------- /Voice2/libgsm/MACHINES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/MACHINES -------------------------------------------------------------------------------- /Voice2/libgsm/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/MANIFEST -------------------------------------------------------------------------------- /Voice2/libgsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/Makefile -------------------------------------------------------------------------------- /Voice2/libgsm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/README -------------------------------------------------------------------------------- /Voice2/libgsm/add-test/add_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/add-test/add_test.c -------------------------------------------------------------------------------- /Voice2/libgsm/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/config.h -------------------------------------------------------------------------------- /Voice2/libgsm/inc/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/gsm.h -------------------------------------------------------------------------------- /Voice2/libgsm/inc/gsm.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/gsm.h.orig -------------------------------------------------------------------------------- /Voice2/libgsm/inc/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/private.h -------------------------------------------------------------------------------- /Voice2/libgsm/inc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/proto.h -------------------------------------------------------------------------------- /Voice2/libgsm/inc/toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/toast.h -------------------------------------------------------------------------------- /Voice2/libgsm/inc/unproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/inc/unproto.h -------------------------------------------------------------------------------- /Voice2/libgsm/man/bitter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/man/bitter.1 -------------------------------------------------------------------------------- /Voice2/libgsm/man/gsm.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/man/gsm.3 -------------------------------------------------------------------------------- /Voice2/libgsm/man/gsm_explode.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/man/gsm_explode.3 -------------------------------------------------------------------------------- /Voice2/libgsm/man/gsm_option.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/man/gsm_option.3 -------------------------------------------------------------------------------- /Voice2/libgsm/man/gsm_print.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/man/gsm_print.3 -------------------------------------------------------------------------------- /Voice2/libgsm/man/toast.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/man/toast.1 -------------------------------------------------------------------------------- /Voice2/libgsm/src/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/add.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/code.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/debug.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/decode.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_create.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_decode.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_destroy.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_encode.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_explode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_explode.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_implode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_implode.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_option.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/gsm_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/gsm_print.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/long_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/long_term.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/lpc.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/preprocess.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/rpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/rpe.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/short_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/short_term.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/table.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/toast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/toast.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/toast_alaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/toast_alaw.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/toast_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/toast_audio.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/toast_lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/toast_lin.c -------------------------------------------------------------------------------- /Voice2/libgsm/src/toast_ulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/src/toast_ulaw.c -------------------------------------------------------------------------------- /Voice2/libgsm/tls/bitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/bitter.c -------------------------------------------------------------------------------- /Voice2/libgsm/tls/bitter.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/bitter.dta -------------------------------------------------------------------------------- /Voice2/libgsm/tls/ginger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/ginger.c -------------------------------------------------------------------------------- /Voice2/libgsm/tls/sour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/sour.c -------------------------------------------------------------------------------- /Voice2/libgsm/tls/sour1.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/sour1.dta -------------------------------------------------------------------------------- /Voice2/libgsm/tls/sour2.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/sour2.dta -------------------------------------------------------------------------------- /Voice2/libgsm/tls/sweet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/sweet.c -------------------------------------------------------------------------------- /Voice2/libgsm/tls/taste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/taste.c -------------------------------------------------------------------------------- /Voice2/libgsm/tls/taste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tls/taste.h -------------------------------------------------------------------------------- /Voice2/libgsm/tst/cod2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tst/cod2lin.c -------------------------------------------------------------------------------- /Voice2/libgsm/tst/cod2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tst/cod2txt.c -------------------------------------------------------------------------------- /Voice2/libgsm/tst/gsm2cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tst/gsm2cod.c -------------------------------------------------------------------------------- /Voice2/libgsm/tst/lin2cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tst/lin2cod.c -------------------------------------------------------------------------------- /Voice2/libgsm/tst/lin2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tst/lin2txt.c -------------------------------------------------------------------------------- /Voice2/libgsm/tst/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libgsm/tst/run -------------------------------------------------------------------------------- /Voice2/libspeex/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/AUTHORS -------------------------------------------------------------------------------- /Voice2/libspeex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/CMakeLists.txt -------------------------------------------------------------------------------- /Voice2/libspeex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/COPYING -------------------------------------------------------------------------------- /Voice2/libspeex/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/ChangeLog -------------------------------------------------------------------------------- /Voice2/libspeex/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/Doxyfile -------------------------------------------------------------------------------- /Voice2/libspeex/IDEAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/IDEAS -------------------------------------------------------------------------------- /Voice2/libspeex/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/INSTALL -------------------------------------------------------------------------------- /Voice2/libspeex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/Makefile.am -------------------------------------------------------------------------------- /Voice2/libspeex/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/Makefile.in -------------------------------------------------------------------------------- /Voice2/libspeex/NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /Voice2/libspeex/OPTIMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/OPTIMIZE -------------------------------------------------------------------------------- /Voice2/libspeex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/README -------------------------------------------------------------------------------- /Voice2/libspeex/README.TI-DSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/README.TI-DSP -------------------------------------------------------------------------------- /Voice2/libspeex/README.Trimedia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/README.Trimedia -------------------------------------------------------------------------------- /Voice2/libspeex/README.blackfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/README.blackfin -------------------------------------------------------------------------------- /Voice2/libspeex/README.symbian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/README.symbian -------------------------------------------------------------------------------- /Voice2/libspeex/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/README.win32 -------------------------------------------------------------------------------- /Voice2/libspeex/Speex.kdevelop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/Speex.kdevelop -------------------------------------------------------------------------------- /Voice2/libspeex/Speex.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/Speex.spec.in -------------------------------------------------------------------------------- /Voice2/libspeex/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/TODO -------------------------------------------------------------------------------- /Voice2/libspeex/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/aclocal.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/autogen.sh -------------------------------------------------------------------------------- /Voice2/libspeex/cmake/SpeexConfig.cmake: -------------------------------------------------------------------------------- 1 | include (${CMAKE_CURRENT_LIST_DIR}/SpeexTargets.cmake) 2 | -------------------------------------------------------------------------------- /Voice2/libspeex/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/compile -------------------------------------------------------------------------------- /Voice2/libspeex/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/config.guess -------------------------------------------------------------------------------- /Voice2/libspeex/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/config.h.cmake -------------------------------------------------------------------------------- /Voice2/libspeex/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/config.h.in -------------------------------------------------------------------------------- /Voice2/libspeex/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/config.sub -------------------------------------------------------------------------------- /Voice2/libspeex/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/configure -------------------------------------------------------------------------------- /Voice2/libspeex/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/configure.ac -------------------------------------------------------------------------------- /Voice2/libspeex/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/depcomp -------------------------------------------------------------------------------- /Voice2/libspeex/doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/.cvsignore -------------------------------------------------------------------------------- /Voice2/libspeex/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/Makefile.am -------------------------------------------------------------------------------- /Voice2/libspeex/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/Makefile.in -------------------------------------------------------------------------------- /Voice2/libspeex/doc/echo_path.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/echo_path.eps -------------------------------------------------------------------------------- /Voice2/libspeex/doc/echo_path.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/echo_path.odg -------------------------------------------------------------------------------- /Voice2/libspeex/doc/manual.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/manual.lyx -------------------------------------------------------------------------------- /Voice2/libspeex/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/manual.pdf -------------------------------------------------------------------------------- /Voice2/libspeex/doc/nb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/nb_celp.c -------------------------------------------------------------------------------- /Voice2/libspeex/doc/rtp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/rtp.txt -------------------------------------------------------------------------------- /Voice2/libspeex/doc/sampledec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/sampledec.c -------------------------------------------------------------------------------- /Voice2/libspeex/doc/sampleenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/sampleenc.c -------------------------------------------------------------------------------- /Voice2/libspeex/doc/speex_abs.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/speex_abs.eps -------------------------------------------------------------------------------- /Voice2/libspeex/doc/speex_abs.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/doc/speex_abs.odg -------------------------------------------------------------------------------- /Voice2/libspeex/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/html/index.html -------------------------------------------------------------------------------- /Voice2/libspeex/html/patents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/html/patents.html -------------------------------------------------------------------------------- /Voice2/libspeex/html/speex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/html/speex.png -------------------------------------------------------------------------------- /Voice2/libspeex/html/speex.webprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/html/speex.webprj -------------------------------------------------------------------------------- /Voice2/libspeex/html/speex.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/html/speex.xcf -------------------------------------------------------------------------------- /Voice2/libspeex/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /Voice2/libspeex/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/install-sh -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/arch.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/bfin.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/bits.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/lpc.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/lpc.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/lsp.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/lsp.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/ltp.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/ltp.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/modes.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/modes.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/speex.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/stereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/stereo.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/vbr.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/vbr.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/vq.c -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/vq.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/vq_sse.h -------------------------------------------------------------------------------- /Voice2/libspeex/libspeex/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/libspeex/window.c -------------------------------------------------------------------------------- /Voice2/libspeex/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/ltmain.sh -------------------------------------------------------------------------------- /Voice2/libspeex/m4/add_cflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/add_cflags.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/libtool.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/ltoptions.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/ltsugar.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/ltversion.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/m4/pkg.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/macosx/Info.plist -------------------------------------------------------------------------------- /Voice2/libspeex/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/missing -------------------------------------------------------------------------------- /Voice2/libspeex/speex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/speex.m4 -------------------------------------------------------------------------------- /Voice2/libspeex/speex.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/speex.pc.in -------------------------------------------------------------------------------- /Voice2/libspeex/src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/.cvsignore -------------------------------------------------------------------------------- /Voice2/libspeex/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/Makefile.am -------------------------------------------------------------------------------- /Voice2/libspeex/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/Makefile.in -------------------------------------------------------------------------------- /Voice2/libspeex/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/getopt.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/getopt1.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/getopt_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/getopt_win.h -------------------------------------------------------------------------------- /Voice2/libspeex/src/skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/skeleton.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/skeleton.h -------------------------------------------------------------------------------- /Voice2/libspeex/src/speexdec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/speexdec.1 -------------------------------------------------------------------------------- /Voice2/libspeex/src/speexdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/speexdec.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/speexenc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/speexenc.1 -------------------------------------------------------------------------------- /Voice2/libspeex/src/speexenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/speexenc.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/wav_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/wav_io.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/wav_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/wav_io.h -------------------------------------------------------------------------------- /Voice2/libspeex/src/wave_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/wave_out.c -------------------------------------------------------------------------------- /Voice2/libspeex/src/wave_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/src/wave_out.h -------------------------------------------------------------------------------- /Voice2/libspeex/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/symbian/bld.inf -------------------------------------------------------------------------------- /Voice2/libspeex/symbian/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/symbian/config.h -------------------------------------------------------------------------------- /Voice2/libspeex/symbian/speex.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/symbian/speex.mmp -------------------------------------------------------------------------------- /Voice2/libspeex/ti/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/ti/Makefile.am -------------------------------------------------------------------------------- /Voice2/libspeex/ti/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/ti/Makefile.in -------------------------------------------------------------------------------- /Voice2/libspeex/ti/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/ti/config.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/config.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/fftwrap_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/fftwrap_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/filters_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/filters_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/fixed_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/fixed_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/kiss_fft_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/kiss_fft_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/lpc_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/lpc_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/lsp_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/lsp_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/ltp_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/ltp_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/misc_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/misc_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/profile_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/profile_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/tmv/vq_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/tmv/vq_tm.h -------------------------------------------------------------------------------- /Voice2/libspeex/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/win32/Makefile.am -------------------------------------------------------------------------------- /Voice2/libspeex/win32/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/win32/Makefile.in -------------------------------------------------------------------------------- /Voice2/libspeex/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/win32/config.h -------------------------------------------------------------------------------- /Voice2/libspeex/win32/speex.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/libspeex/win32/speex.iss -------------------------------------------------------------------------------- /Voice2/voice2bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/voice2bench/CMakeLists.txt -------------------------------------------------------------------------------- /Voice2/voice2bench/voice2bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/voice2bench/voice2bench.c -------------------------------------------------------------------------------- /Voice2/voice2bench/voicesample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/voice2bench/voicesample.h -------------------------------------------------------------------------------- /Voice2/winerrordxgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/Voice2/winerrordxgi.h -------------------------------------------------------------------------------- /brigades/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/CMakeLists.txt -------------------------------------------------------------------------------- /brigades/brigades.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/brigades.h -------------------------------------------------------------------------------- /brigades/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/changelog.txt -------------------------------------------------------------------------------- /brigades/gsbMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbMain.c -------------------------------------------------------------------------------- /brigades/gsbMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbMain.h -------------------------------------------------------------------------------- /brigades/gsbSerialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbSerialize.c -------------------------------------------------------------------------------- /brigades/gsbSerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbSerialize.h -------------------------------------------------------------------------------- /brigades/gsbServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbServices.c -------------------------------------------------------------------------------- /brigades/gsbServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbServices.h -------------------------------------------------------------------------------- /brigades/gsbUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbUtil.c -------------------------------------------------------------------------------- /brigades/gsbUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/brigades/gsbUtil.h -------------------------------------------------------------------------------- /cmake/FindDirectX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/cmake/FindDirectX.cmake -------------------------------------------------------------------------------- /cmake/FindGsm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/cmake/FindGsm.cmake -------------------------------------------------------------------------------- /cmake/FindSpeex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/cmake/FindSpeex.cmake -------------------------------------------------------------------------------- /cmake/MFCMacro.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/cmake/MFCMacro.cmake -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/changelog-sharedcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/changelog-sharedcode.txt -------------------------------------------------------------------------------- /common/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/changelog.txt -------------------------------------------------------------------------------- /common/darray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/darray.c -------------------------------------------------------------------------------- /common/darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/darray.h -------------------------------------------------------------------------------- /common/gsAssert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsAssert.c -------------------------------------------------------------------------------- /common/gsAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsAssert.h -------------------------------------------------------------------------------- /common/gsAvailable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsAvailable.c -------------------------------------------------------------------------------- /common/gsAvailable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsAvailable.h -------------------------------------------------------------------------------- /common/gsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsCommon.h -------------------------------------------------------------------------------- /common/gsCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsCore.c -------------------------------------------------------------------------------- /common/gsCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsCore.h -------------------------------------------------------------------------------- /common/gsCrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsCrypt.c -------------------------------------------------------------------------------- /common/gsCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsCrypt.h -------------------------------------------------------------------------------- /common/gsDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsDebug.c -------------------------------------------------------------------------------- /common/gsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsDebug.h -------------------------------------------------------------------------------- /common/gsLargeInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsLargeInt.c -------------------------------------------------------------------------------- /common/gsLargeInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsLargeInt.h -------------------------------------------------------------------------------- /common/gsMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsMemory.c -------------------------------------------------------------------------------- /common/gsMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsMemory.h -------------------------------------------------------------------------------- /common/gsPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatform.c -------------------------------------------------------------------------------- /common/gsPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatform.h -------------------------------------------------------------------------------- /common/gsPlatformSocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatformSocket.c -------------------------------------------------------------------------------- /common/gsPlatformSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatformSocket.h -------------------------------------------------------------------------------- /common/gsPlatformThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatformThread.c -------------------------------------------------------------------------------- /common/gsPlatformThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatformThread.h -------------------------------------------------------------------------------- /common/gsPlatformUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatformUtil.c -------------------------------------------------------------------------------- /common/gsPlatformUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsPlatformUtil.h -------------------------------------------------------------------------------- /common/gsRC4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsRC4.c -------------------------------------------------------------------------------- /common/gsRC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsRC4.h -------------------------------------------------------------------------------- /common/gsResultCodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsResultCodes.c -------------------------------------------------------------------------------- /common/gsResultCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsResultCodes.h -------------------------------------------------------------------------------- /common/gsSHA1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsSHA1.c -------------------------------------------------------------------------------- /common/gsSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsSHA1.h -------------------------------------------------------------------------------- /common/gsSSL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsSSL.c -------------------------------------------------------------------------------- /common/gsSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsSSL.h -------------------------------------------------------------------------------- /common/gsStringUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsStringUtil.c -------------------------------------------------------------------------------- /common/gsStringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsStringUtil.h -------------------------------------------------------------------------------- /common/gsUdpEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsUdpEngine.c -------------------------------------------------------------------------------- /common/gsUdpEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsUdpEngine.h -------------------------------------------------------------------------------- /common/gsXML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsXML.c -------------------------------------------------------------------------------- /common/gsXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/gsXML.h -------------------------------------------------------------------------------- /common/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/hashtable.c -------------------------------------------------------------------------------- /common/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/hashtable.h -------------------------------------------------------------------------------- /common/linux/LinuxCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/linux/LinuxCommon.c -------------------------------------------------------------------------------- /common/linux/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/linux/changelog.txt -------------------------------------------------------------------------------- /common/linux/gsSocketLinux.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/linux/gsThreadLinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/linux/gsThreadLinux.c -------------------------------------------------------------------------------- /common/linux/gsUtilLinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/linux/gsUtilLinux.c -------------------------------------------------------------------------------- /common/macosx/MacOSXCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/macosx/MacOSXCommon.c -------------------------------------------------------------------------------- /common/macosx/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/macosx/changelog.txt -------------------------------------------------------------------------------- /common/macosx/gsThreadMacOSX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/macosx/gsThreadMacOSX.c -------------------------------------------------------------------------------- /common/macosx/gsUtilMacOSX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/macosx/gsUtilMacOSX.c -------------------------------------------------------------------------------- /common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/md5.h -------------------------------------------------------------------------------- /common/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/md5c.c -------------------------------------------------------------------------------- /common/nitro/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/backup.c -------------------------------------------------------------------------------- /common/nitro/backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/backup.h -------------------------------------------------------------------------------- /common/nitro/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/changelog.txt -------------------------------------------------------------------------------- /common/nitro/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/font.c -------------------------------------------------------------------------------- /common/nitro/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/font.h -------------------------------------------------------------------------------- /common/nitro/gsSocketNitro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/gsSocketNitro.c -------------------------------------------------------------------------------- /common/nitro/gsThreadNitro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/gsThreadNitro.c -------------------------------------------------------------------------------- /common/nitro/gsTimerNitro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/gsTimerNitro.c -------------------------------------------------------------------------------- /common/nitro/gsUtilNitro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/gsUtilNitro.c -------------------------------------------------------------------------------- /common/nitro/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/key.c -------------------------------------------------------------------------------- /common/nitro/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/key.h -------------------------------------------------------------------------------- /common/nitro/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/main.c -------------------------------------------------------------------------------- /common/nitro/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/menu.c -------------------------------------------------------------------------------- /common/nitro/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/menu.h -------------------------------------------------------------------------------- /common/nitro/nitrocommon.cww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/nitrocommon.cww -------------------------------------------------------------------------------- /common/nitro/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/screen.c -------------------------------------------------------------------------------- /common/nitro/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/screen.h -------------------------------------------------------------------------------- /common/nitro/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/touch.c -------------------------------------------------------------------------------- /common/nitro/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/touch.h -------------------------------------------------------------------------------- /common/nitro/wireless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/wireless.c -------------------------------------------------------------------------------- /common/nitro/wireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nitro/wireless.h -------------------------------------------------------------------------------- /common/nonport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nonport.c -------------------------------------------------------------------------------- /common/nonport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/nonport.h -------------------------------------------------------------------------------- /common/ps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/Makefile -------------------------------------------------------------------------------- /common/ps2/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/Makefile.common -------------------------------------------------------------------------------- /common/ps2/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/changelog.txt -------------------------------------------------------------------------------- /common/ps2/cw/LinkSegment_PS2.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/cw/LinkSegment_PS2.lcf -------------------------------------------------------------------------------- /common/ps2/cw/cw.cww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/cw/cw.cww -------------------------------------------------------------------------------- /common/ps2/ent_cnf/cw/ent_cnf.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/ent_cnf/cw/ent_cnf.mcp -------------------------------------------------------------------------------- /common/ps2/gsSocketPs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/gsSocketPs2.c -------------------------------------------------------------------------------- /common/ps2/gsThreadPs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/gsThreadPs2.c -------------------------------------------------------------------------------- /common/ps2/gsUtilPs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/gsUtilPs2.c -------------------------------------------------------------------------------- /common/ps2/prodg/PS2_in_VC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/prodg/PS2_in_VC.h -------------------------------------------------------------------------------- /common/ps2/prodg/prodg.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/prodg/prodg.dsw -------------------------------------------------------------------------------- /common/ps2/prodg/ps2.lk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/prodg/ps2.lk -------------------------------------------------------------------------------- /common/ps2/ps2common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/ps2common.c -------------------------------------------------------------------------------- /common/ps2/ps2pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/ps2pad.c -------------------------------------------------------------------------------- /common/ps2/ps2pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps2/ps2pad.h -------------------------------------------------------------------------------- /common/ps3/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps3/Makefile.common -------------------------------------------------------------------------------- /common/ps3/gsSocketPS3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps3/gsSocketPS3.c -------------------------------------------------------------------------------- /common/ps3/gsUtilPS3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps3/gsUtilPS3.c -------------------------------------------------------------------------------- /common/ps3/ps3common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/ps3/ps3common.c -------------------------------------------------------------------------------- /common/psp/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp/Makefile.common -------------------------------------------------------------------------------- /common/psp/gsSocketPSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp/gsSocketPSP.c -------------------------------------------------------------------------------- /common/psp/gsUtilPSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp/gsUtilPSP.c -------------------------------------------------------------------------------- /common/psp/pspcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp/pspcommon.c -------------------------------------------------------------------------------- /common/psp2/gsSocketPSP2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp2/gsSocketPSP2.c -------------------------------------------------------------------------------- /common/psp2/gsUtilPSP2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp2/gsUtilPSP2.c -------------------------------------------------------------------------------- /common/psp2/psp2common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/psp2/psp2common.c -------------------------------------------------------------------------------- /common/win32/Win32Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/win32/Win32Common.c -------------------------------------------------------------------------------- /common/win32/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/win32/changelog.txt -------------------------------------------------------------------------------- /common/win32/gsSocketWin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/win32/gsSocketWin32.c -------------------------------------------------------------------------------- /common/win32/gsThreadWin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/win32/gsThreadWin32.c -------------------------------------------------------------------------------- /common/win32/gsUtilWin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/win32/gsUtilWin32.c -------------------------------------------------------------------------------- /common/x360/X360Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/x360/X360Common.c -------------------------------------------------------------------------------- /common/x360/gsSocketX360.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/x360/gsSocketX360.c -------------------------------------------------------------------------------- /common/x360/gsThreadX360.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/x360/gsThreadX360.c -------------------------------------------------------------------------------- /common/x360/gsUtilX360.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/x360/gsUtilX360.c -------------------------------------------------------------------------------- /common/xbox/gsSocketXbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/common/xbox/gsSocketXbox.c -------------------------------------------------------------------------------- /doc/OpenSDK 2012 merge notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/doc/OpenSDK 2012 merge notes.txt -------------------------------------------------------------------------------- /doc/SDK Documentation 2007.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/doc/SDK Documentation 2007.chm -------------------------------------------------------------------------------- /doc/SDK Documentation 2012.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/doc/SDK Documentation 2012.chm -------------------------------------------------------------------------------- /doc/SDK Documentation Open.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/doc/SDK Documentation Open.chm -------------------------------------------------------------------------------- /doc/iPhoneReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/doc/iPhoneReadMe.txt -------------------------------------------------------------------------------- /gcdkey/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/CMakeLists.txt -------------------------------------------------------------------------------- /gcdkey/CdkeyGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/CdkeyGen/CMakeLists.txt -------------------------------------------------------------------------------- /gcdkey/CdkeyGen/gcdkeygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/CdkeyGen/gcdkeygen.c -------------------------------------------------------------------------------- /gcdkey/ClientTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/ClientTest/CMakeLists.txt -------------------------------------------------------------------------------- /gcdkey/ServerTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/ServerTest/CMakeLists.txt -------------------------------------------------------------------------------- /gcdkey/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/changelog.txt -------------------------------------------------------------------------------- /gcdkey/gcdkeyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/gcdkeyc.c -------------------------------------------------------------------------------- /gcdkey/gcdkeyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/gcdkeyc.h -------------------------------------------------------------------------------- /gcdkey/gcdkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/gcdkeys.c -------------------------------------------------------------------------------- /gcdkey/gcdkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gcdkey/gcdkeys.h -------------------------------------------------------------------------------- /ghttp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/CMakeLists.txt -------------------------------------------------------------------------------- /ghttp/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/changelog.txt -------------------------------------------------------------------------------- /ghttp/ghttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttp.h -------------------------------------------------------------------------------- /ghttp/ghttpASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpASCII.h -------------------------------------------------------------------------------- /ghttp/ghttpBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpBuffer.c -------------------------------------------------------------------------------- /ghttp/ghttpBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpBuffer.h -------------------------------------------------------------------------------- /ghttp/ghttpCallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpCallbacks.c -------------------------------------------------------------------------------- /ghttp/ghttpCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpCallbacks.h -------------------------------------------------------------------------------- /ghttp/ghttpCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpCommon.c -------------------------------------------------------------------------------- /ghttp/ghttpCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpCommon.h -------------------------------------------------------------------------------- /ghttp/ghttpConnection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpConnection.c -------------------------------------------------------------------------------- /ghttp/ghttpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpConnection.h -------------------------------------------------------------------------------- /ghttp/ghttpEncryption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpEncryption.c -------------------------------------------------------------------------------- /ghttp/ghttpEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpEncryption.h -------------------------------------------------------------------------------- /ghttp/ghttpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpMain.c -------------------------------------------------------------------------------- /ghttp/ghttpMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpMain.h -------------------------------------------------------------------------------- /ghttp/ghttpPost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpPost.c -------------------------------------------------------------------------------- /ghttp/ghttpPost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpPost.h -------------------------------------------------------------------------------- /ghttp/ghttpProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpProcess.c -------------------------------------------------------------------------------- /ghttp/ghttpProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpProcess.h -------------------------------------------------------------------------------- /ghttp/ghttpSoap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpSoap.c -------------------------------------------------------------------------------- /ghttp/ghttpSoap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpSoap.h -------------------------------------------------------------------------------- /ghttp/ghttpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpc/CMakeLists.txt -------------------------------------------------------------------------------- /ghttp/ghttpc/ghttpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpc/ghttpc.c -------------------------------------------------------------------------------- /ghttp/ghttpc/ghttpps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpc/ghttpps2/Makefile -------------------------------------------------------------------------------- /ghttp/ghttpc/ghttpps3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpc/ghttpps3/Makefile -------------------------------------------------------------------------------- /ghttp/ghttpmfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/CMakeLists.txt -------------------------------------------------------------------------------- /ghttp/ghttpmfc/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/StdAfx.h -------------------------------------------------------------------------------- /ghttp/ghttpmfc/ghttpmfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/ghttpmfc.cpp -------------------------------------------------------------------------------- /ghttp/ghttpmfc/ghttpmfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/ghttpmfc.h -------------------------------------------------------------------------------- /ghttp/ghttpmfc/ghttpmfc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/ghttpmfc.rc -------------------------------------------------------------------------------- /ghttp/ghttpmfc/ghttpmfcDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/ghttpmfcDlg.cpp -------------------------------------------------------------------------------- /ghttp/ghttpmfc/ghttpmfcDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/ghttpmfcDlg.h -------------------------------------------------------------------------------- /ghttp/ghttpmfc/res/ghttpmfc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/res/ghttpmfc.ico -------------------------------------------------------------------------------- /ghttp/ghttpmfc/res/ghttpmfc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/res/ghttpmfc.rc2 -------------------------------------------------------------------------------- /ghttp/ghttpmfc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/ghttp/ghttpmfc/resource.h -------------------------------------------------------------------------------- /gstats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/changelog.txt -------------------------------------------------------------------------------- /gstats/gbucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gbucket.c -------------------------------------------------------------------------------- /gstats/gbucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gbucket.h -------------------------------------------------------------------------------- /gstats/gp_stats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/gp_stats/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/StdAfx.h -------------------------------------------------------------------------------- /gstats/gp_stats/gp_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/gp_stats.cpp -------------------------------------------------------------------------------- /gstats/gp_stats/gp_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/gp_stats.h -------------------------------------------------------------------------------- /gstats/gp_stats/gp_stats.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/gp_stats.rc -------------------------------------------------------------------------------- /gstats/gp_stats/gp_statsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/gp_statsDlg.cpp -------------------------------------------------------------------------------- /gstats/gp_stats/gp_statsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/gp_statsDlg.h -------------------------------------------------------------------------------- /gstats/gp_stats/res/gp_stats.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/res/gp_stats.ico -------------------------------------------------------------------------------- /gstats/gp_stats/res/gp_stats.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/res/gp_stats.rc2 -------------------------------------------------------------------------------- /gstats/gp_stats/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gp_stats/resource.h -------------------------------------------------------------------------------- /gstats/gpersist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gpersist.h -------------------------------------------------------------------------------- /gstats/gstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gstats.c -------------------------------------------------------------------------------- /gstats/gstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/gstats.h -------------------------------------------------------------------------------- /gstats/ladderTrack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/ladderTrack/LoginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/LoginDlg.cpp -------------------------------------------------------------------------------- /gstats/ladderTrack/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/LoginDlg.h -------------------------------------------------------------------------------- /gstats/ladderTrack/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/StdAfx.h -------------------------------------------------------------------------------- /gstats/ladderTrack/WaitingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/WaitingDlg.cpp -------------------------------------------------------------------------------- /gstats/ladderTrack/WaitingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/WaitingDlg.h -------------------------------------------------------------------------------- /gstats/ladderTrack/ladderTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/ladderTrack.h -------------------------------------------------------------------------------- /gstats/ladderTrack/ladderTrack.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/ladderTrack.rc -------------------------------------------------------------------------------- /gstats/ladderTrack/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/ladderTrack/resource.h -------------------------------------------------------------------------------- /gstats/multiTrack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/multiTrack/HostOrJoinDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/HostOrJoinDlg.h -------------------------------------------------------------------------------- /gstats/multiTrack/LoginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/LoginDlg.cpp -------------------------------------------------------------------------------- /gstats/multiTrack/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/LoginDlg.h -------------------------------------------------------------------------------- /gstats/multiTrack/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/StdAfx.h -------------------------------------------------------------------------------- /gstats/multiTrack/WaitingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/WaitingDlg.cpp -------------------------------------------------------------------------------- /gstats/multiTrack/WaitingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/WaitingDlg.h -------------------------------------------------------------------------------- /gstats/multiTrack/multiTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/multiTrack.cpp -------------------------------------------------------------------------------- /gstats/multiTrack/multiTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/multiTrack.h -------------------------------------------------------------------------------- /gstats/multiTrack/multiTrack.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/multiTrack.rc -------------------------------------------------------------------------------- /gstats/multiTrack/multiTrackDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/multiTrackDlg.h -------------------------------------------------------------------------------- /gstats/multiTrack/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/multiTrack/resource.h -------------------------------------------------------------------------------- /gstats/persisttest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/persisttest/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/persisttest/persisttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/persisttest/persisttest.c -------------------------------------------------------------------------------- /gstats/statstest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/statstest/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/statstest/statstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/statstest/statstest.c -------------------------------------------------------------------------------- /gstats/track/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/CMakeLists.txt -------------------------------------------------------------------------------- /gstats/track/LoginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/LoginDlg.cpp -------------------------------------------------------------------------------- /gstats/track/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/LoginDlg.h -------------------------------------------------------------------------------- /gstats/track/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/StdAfx.h -------------------------------------------------------------------------------- /gstats/track/res/track.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/res/track.ico -------------------------------------------------------------------------------- /gstats/track/res/track.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/res/track.rc2 -------------------------------------------------------------------------------- /gstats/track/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/resource.h -------------------------------------------------------------------------------- /gstats/track/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/track.cpp -------------------------------------------------------------------------------- /gstats/track/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/track.h -------------------------------------------------------------------------------- /gstats/track/track.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/track.rc -------------------------------------------------------------------------------- /gstats/track/trackDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/trackDlg.cpp -------------------------------------------------------------------------------- /gstats/track/trackDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gstats/track/trackDlg.h -------------------------------------------------------------------------------- /gt2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/CMakeLists.txt -------------------------------------------------------------------------------- /gt2/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/changelog.txt -------------------------------------------------------------------------------- /gt2/gt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2.h -------------------------------------------------------------------------------- /gt2/gt2Auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Auth.c -------------------------------------------------------------------------------- /gt2/gt2Auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Auth.h -------------------------------------------------------------------------------- /gt2/gt2Buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Buffer.c -------------------------------------------------------------------------------- /gt2/gt2Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Buffer.h -------------------------------------------------------------------------------- /gt2/gt2Callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Callback.c -------------------------------------------------------------------------------- /gt2/gt2Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Callback.h -------------------------------------------------------------------------------- /gt2/gt2Connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Connection.c -------------------------------------------------------------------------------- /gt2/gt2Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Connection.h -------------------------------------------------------------------------------- /gt2/gt2Encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Encode.c -------------------------------------------------------------------------------- /gt2/gt2Encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Encode.h -------------------------------------------------------------------------------- /gt2/gt2Filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Filter.c -------------------------------------------------------------------------------- /gt2/gt2Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Filter.h -------------------------------------------------------------------------------- /gt2/gt2Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Main.c -------------------------------------------------------------------------------- /gt2/gt2Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Main.h -------------------------------------------------------------------------------- /gt2/gt2Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Message.c -------------------------------------------------------------------------------- /gt2/gt2Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Message.h -------------------------------------------------------------------------------- /gt2/gt2Socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Socket.c -------------------------------------------------------------------------------- /gt2/gt2Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Socket.h -------------------------------------------------------------------------------- /gt2/gt2Utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Utility.c -------------------------------------------------------------------------------- /gt2/gt2Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2Utility.h -------------------------------------------------------------------------------- /gt2/gt2action/TGAFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/TGAFile.cpp -------------------------------------------------------------------------------- /gt2/gt2action/TGAFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/TGAFile.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aClient.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aClient.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aDisplay.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aDisplay.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aInput.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aInput.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aLogic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aLogic.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aLogic.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aMain.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aMain.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aMath.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aMath.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aParse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aParse.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aParse.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aServer.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aServer.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2aSound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aSound.c -------------------------------------------------------------------------------- /gt2/gt2action/gt2aSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2aSound.h -------------------------------------------------------------------------------- /gt2/gt2action/gt2action.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/gt2action.vcxproj -------------------------------------------------------------------------------- /gt2/gt2action/images/mine0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/mine0.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/mine1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/mine1.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/mine2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/mine2.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/rocket0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/rocket0.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/rocket1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/rocket1.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/rocket2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/rocket2.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/rocket3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/rocket3.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/ship0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/ship0.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/ship1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/ship1.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/space.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/space.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/spinner0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/spinner0.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/spinner1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/spinner1.tga -------------------------------------------------------------------------------- /gt2/gt2action/images/spinner2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/images/spinner2.tga -------------------------------------------------------------------------------- /gt2/gt2action/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/messages.txt -------------------------------------------------------------------------------- /gt2/gt2action/sounds/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/sounds/die.wav -------------------------------------------------------------------------------- /gt2/gt2action/sounds/mine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/sounds/mine.wav -------------------------------------------------------------------------------- /gt2/gt2action/sounds/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/sounds/pickup.wav -------------------------------------------------------------------------------- /gt2/gt2action/sounds/rocket.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/sounds/rocket.wav -------------------------------------------------------------------------------- /gt2/gt2action/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2action/todo.txt -------------------------------------------------------------------------------- /gt2/gt2hostmig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2hostmig/CMakeLists.txt -------------------------------------------------------------------------------- /gt2/gt2hostmig/gt2hostmig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2hostmig/gt2hostmig.c -------------------------------------------------------------------------------- /gt2/gt2nat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2nat/CMakeLists.txt -------------------------------------------------------------------------------- /gt2/gt2nat/gt2nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2nat/gt2nat.c -------------------------------------------------------------------------------- /gt2/gt2proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2proxy/CMakeLists.txt -------------------------------------------------------------------------------- /gt2/gt2proxy/gt2proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2proxy/gt2proxy.c -------------------------------------------------------------------------------- /gt2/gt2test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/CMakeLists.txt -------------------------------------------------------------------------------- /gt2/gt2test/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/StdAfx.h -------------------------------------------------------------------------------- /gt2/gt2test/gt2test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/gt2test.cpp -------------------------------------------------------------------------------- /gt2/gt2test/gt2test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/gt2test.h -------------------------------------------------------------------------------- /gt2/gt2test/gt2test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/gt2test.rc -------------------------------------------------------------------------------- /gt2/gt2test/gt2testDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/gt2testDlg.cpp -------------------------------------------------------------------------------- /gt2/gt2test/gt2testDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/gt2testDlg.h -------------------------------------------------------------------------------- /gt2/gt2test/res/gt2test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/res/gt2test.ico -------------------------------------------------------------------------------- /gt2/gt2test/res/gt2test.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/res/gt2test.rc2 -------------------------------------------------------------------------------- /gt2/gt2test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2test/resource.h -------------------------------------------------------------------------------- /gt2/gt2testc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2testc/CMakeLists.txt -------------------------------------------------------------------------------- /gt2/gt2testc/gt2nitrocw/Nitro.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2testc/gt2nitrocw/Nitro.lcf -------------------------------------------------------------------------------- /gt2/gt2testc/gt2ps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2testc/gt2ps2/Makefile -------------------------------------------------------------------------------- /gt2/gt2testc/gt2ps3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2testc/gt2ps3/Makefile -------------------------------------------------------------------------------- /gt2/gt2testc/gt2testc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2testc/gt2testc.c -------------------------------------------------------------------------------- /gt2/gt2testc/gt2x360/gt2x360.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/gt2/gt2testc/gt2x360/gt2x360.sln -------------------------------------------------------------------------------- /natneg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/CMakeLists.txt -------------------------------------------------------------------------------- /natneg/NATify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/NATify.c -------------------------------------------------------------------------------- /natneg/NATify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/NATify.h -------------------------------------------------------------------------------- /natneg/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/changelog.txt -------------------------------------------------------------------------------- /natneg/natneg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/natneg.c -------------------------------------------------------------------------------- /natneg/natneg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/natneg.h -------------------------------------------------------------------------------- /natneg/nninternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/nninternal.h -------------------------------------------------------------------------------- /natneg/simpletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/simpletest/CMakeLists.txt -------------------------------------------------------------------------------- /natneg/simpletest/simpletest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/natneg/simpletest/simpletest.c -------------------------------------------------------------------------------- /pinger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pinger/CMakeLists.txt -------------------------------------------------------------------------------- /pinger/pingTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pinger/pingTest/CMakeLists.txt -------------------------------------------------------------------------------- /pinger/pingTest/pingTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pinger/pingTest/pingTest.c -------------------------------------------------------------------------------- /pinger/pinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pinger/pinger.h -------------------------------------------------------------------------------- /pinger/pingerMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pinger/pingerMain.c -------------------------------------------------------------------------------- /pt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/CMakeLists.txt -------------------------------------------------------------------------------- /pt/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/changelog.txt -------------------------------------------------------------------------------- /pt/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pt.h -------------------------------------------------------------------------------- /pt/ptMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/ptMain.c -------------------------------------------------------------------------------- /pt/pttestc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pttestc/CMakeLists.txt -------------------------------------------------------------------------------- /pt/pttestc/ptnitrocw/Nitro.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pttestc/ptnitrocw/Nitro.lcf -------------------------------------------------------------------------------- /pt/pttestc/ptnitrocw/ROM-TS.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pttestc/ptnitrocw/ROM-TS.rsf -------------------------------------------------------------------------------- /pt/pttestc/ptps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pttestc/ptps2/Makefile -------------------------------------------------------------------------------- /pt/pttestc/ptps2cw/ptps2cw.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pttestc/ptps2cw/ptps2cw.mcp -------------------------------------------------------------------------------- /pt/pttestc/pttestc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/pt/pttestc/pttestc.c -------------------------------------------------------------------------------- /qr2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/CMakeLists.txt -------------------------------------------------------------------------------- /qr2/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/changelog.txt -------------------------------------------------------------------------------- /qr2/qr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2.c -------------------------------------------------------------------------------- /qr2/qr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2.h -------------------------------------------------------------------------------- /qr2/qr2csample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2csample/CMakeLists.txt -------------------------------------------------------------------------------- /qr2/qr2csample/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2csample/ReadMe.txt -------------------------------------------------------------------------------- /qr2/qr2csample/qr2csample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2csample/qr2csample.c -------------------------------------------------------------------------------- /qr2/qr2csample/qr2ps2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2csample/qr2ps2/Makefile -------------------------------------------------------------------------------- /qr2/qr2csample/qr2ps3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2csample/qr2ps3/Makefile -------------------------------------------------------------------------------- /qr2/qr2csample/qr2psp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2csample/qr2psp/Makefile -------------------------------------------------------------------------------- /qr2/qr2regkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2regkeys.c -------------------------------------------------------------------------------- /qr2/qr2regkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/qr2/qr2regkeys.h -------------------------------------------------------------------------------- /sake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/CMakeLists.txt -------------------------------------------------------------------------------- /sake/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/changelog.txt -------------------------------------------------------------------------------- /sake/sake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sake.h -------------------------------------------------------------------------------- /sake/sakeMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeMain.c -------------------------------------------------------------------------------- /sake/sakeMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeMain.h -------------------------------------------------------------------------------- /sake/sakeRequest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeRequest.c -------------------------------------------------------------------------------- /sake/sakeRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeRequest.h -------------------------------------------------------------------------------- /sake/sakeRequestInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeRequestInternal.h -------------------------------------------------------------------------------- /sake/sakeRequestMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeRequestMisc.c -------------------------------------------------------------------------------- /sake/sakeRequestModify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeRequestModify.c -------------------------------------------------------------------------------- /sake/sakeRequestRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/sakeRequestRead.c -------------------------------------------------------------------------------- /sake/saketest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/saketest/CMakeLists.txt -------------------------------------------------------------------------------- /sake/saketest/saketest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sake/saketest/saketest.c -------------------------------------------------------------------------------- /sc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/CMakeLists.txt -------------------------------------------------------------------------------- /sc/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/changelog.txt -------------------------------------------------------------------------------- /sc/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sc.h -------------------------------------------------------------------------------- /sc/scRaceSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/CMakeLists.txt -------------------------------------------------------------------------------- /sc/scRaceSample/HostOrJoinDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/HostOrJoinDlg.cpp -------------------------------------------------------------------------------- /sc/scRaceSample/HostOrJoinDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/HostOrJoinDlg.h -------------------------------------------------------------------------------- /sc/scRaceSample/LoginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/LoginDlg.cpp -------------------------------------------------------------------------------- /sc/scRaceSample/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/LoginDlg.h -------------------------------------------------------------------------------- /sc/scRaceSample/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/ReadMe.txt -------------------------------------------------------------------------------- /sc/scRaceSample/ScRaceSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/ScRaceSample.cpp -------------------------------------------------------------------------------- /sc/scRaceSample/ScRaceSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/ScRaceSample.h -------------------------------------------------------------------------------- /sc/scRaceSample/ScRaceSample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/ScRaceSample.rc -------------------------------------------------------------------------------- /sc/scRaceSample/ScRaceSampleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/ScRaceSampleDlg.h -------------------------------------------------------------------------------- /sc/scRaceSample/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/StdAfx.h -------------------------------------------------------------------------------- /sc/scRaceSample/WaitingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/WaitingDlg.cpp -------------------------------------------------------------------------------- /sc/scRaceSample/WaitingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/WaitingDlg.h -------------------------------------------------------------------------------- /sc/scRaceSample/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/scRaceSample/resource.h -------------------------------------------------------------------------------- /sc/sci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sci.h -------------------------------------------------------------------------------- /sc/sciInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciInterface.c -------------------------------------------------------------------------------- /sc/sciInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciInterface.h -------------------------------------------------------------------------------- /sc/sciMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciMain.c -------------------------------------------------------------------------------- /sc/sciReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciReport.c -------------------------------------------------------------------------------- /sc/sciReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciReport.h -------------------------------------------------------------------------------- /sc/sciSerialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciSerialize.c -------------------------------------------------------------------------------- /sc/sciSerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciSerialize.h -------------------------------------------------------------------------------- /sc/sciWebServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciWebServices.c -------------------------------------------------------------------------------- /sc/sciWebServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sciWebServices.h -------------------------------------------------------------------------------- /sc/sctest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/CMakeLists.txt -------------------------------------------------------------------------------- /sc/sctest/scnitrocw/Nitro.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/scnitrocw/Nitro.lcf -------------------------------------------------------------------------------- /sc/sctest/scnitrocw/ROM-TS.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/scnitrocw/ROM-TS.rsf -------------------------------------------------------------------------------- /sc/sctest/scnitrocw/scnitrocw.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/scnitrocw/scnitrocw.mcp -------------------------------------------------------------------------------- /sc/sctest/sctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/sctest.c -------------------------------------------------------------------------------- /sc/sctest/scx360/scx360.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/scx360/scx360.sln -------------------------------------------------------------------------------- /sc/sctest/scx360/scx360.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctest/scx360/scx360.vcproj -------------------------------------------------------------------------------- /sc/sctestmatchless/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sc/sctestmatchless/CMakeLists.txt -------------------------------------------------------------------------------- /serverbrowsing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/CMakeLists.txt -------------------------------------------------------------------------------- /serverbrowsing/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/changelog.txt -------------------------------------------------------------------------------- /serverbrowsing/sb_ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_ascii.h -------------------------------------------------------------------------------- /serverbrowsing/sb_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_crypt.c -------------------------------------------------------------------------------- /serverbrowsing/sb_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_crypt.h -------------------------------------------------------------------------------- /serverbrowsing/sb_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_internal.h -------------------------------------------------------------------------------- /serverbrowsing/sb_queryengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_queryengine.c -------------------------------------------------------------------------------- /serverbrowsing/sb_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_server.c -------------------------------------------------------------------------------- /serverbrowsing/sb_serverlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sb_serverlist.c -------------------------------------------------------------------------------- /serverbrowsing/sbctest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sbctest/ReadMe.txt -------------------------------------------------------------------------------- /serverbrowsing/sbctest/sbctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/serverbrowsing/sbctest/sbctest.c -------------------------------------------------------------------------------- /sharedDll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sharedDll/CMakeLists.txt -------------------------------------------------------------------------------- /sharedDll/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/sharedDll/dllmain.c -------------------------------------------------------------------------------- /webservices/AuthService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/webservices/AuthService.c -------------------------------------------------------------------------------- /webservices/AuthService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/webservices/AuthService.h -------------------------------------------------------------------------------- /webservices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/webservices/CMakeLists.txt -------------------------------------------------------------------------------- /webservices/RacingService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/webservices/RacingService.c -------------------------------------------------------------------------------- /webservices/RacingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/webservices/RacingService.h -------------------------------------------------------------------------------- /webservices/authtest/authtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameProgressive/UniSpySDK/HEAD/webservices/authtest/authtest.c --------------------------------------------------------------------------------