├── .gitattributes ├── .gitignore ├── Bin ├── VC_redist.x86.exe ├── install.ini └── vcredist_x86.exe ├── Build ├── GCQLBuildDebug.bat └── GCQLBuildRelease.bat ├── ChronDemon ├── ChronDemon.cpp ├── ChronDemon.ini ├── ChronDemon.vcproj ├── ChronDemon.vcxproj ├── ChronDemon.vcxproj.filters ├── WinGDB.xml └── makefile ├── Docs ├── Docs.vcproj ├── Docs.vcxproj └── GameCQ Overview.doc ├── GCQDB ├── Database.cpp ├── Database.h ├── DatabaseMYSQL.cpp ├── DatabaseMYSQL.h ├── GCQDB.vcproj ├── GCQDB.vcxproj ├── GCQDB.vcxproj.filters ├── GCQDBDll.h ├── WinGDB.xml └── makefile ├── GCQL.clw ├── GCQL ├── AdminRights.xml ├── CacheFrame.cpp ├── CacheFrame.h ├── CacheList.cpp ├── CacheList.h ├── CaptionBar.cpp ├── CaptionBar.h ├── ChangeEmail.cpp ├── ChangeEmail.h ├── ChangeName.cpp ├── ChangeName.h ├── ChangePassword.cpp ├── ChangePassword.h ├── ChatEdit.cpp ├── ChatEdit.h ├── ChatFrame.cpp ├── ChatFrame.h ├── ChatLog.cpp ├── ChatLog.h ├── ChatView.cpp ├── ChatView.h ├── CreateRoom.cpp ├── CreateRoom.h ├── EditEmotion.cpp ├── EditEmotion.h ├── Eula.cpp ├── Eula.h ├── Eula.txt ├── FieldValue.cpp ├── FieldValue.h ├── FilterText.cpp ├── FilterText.h ├── FindUser.cpp ├── FindUser.h ├── GCQL.APS ├── GCQL.clw ├── GCQL.cpp ├── GCQL.h ├── GCQL.rc ├── GCQL.reg ├── GCQL.vcproj ├── GCQL.vcxproj ├── GCQL.vcxproj.filters ├── GCQLDoc.cpp ├── GCQLDoc.h ├── GCQStyle.cpp ├── GCQStyle.h ├── Ignores.cpp ├── Ignores.h ├── Login.cpp ├── Login.h ├── MainFrame.cpp ├── MainFrame.h ├── Message.cpp ├── Message.h ├── NewLogin.cpp ├── NewLogin.h ├── Options.cpp ├── Options.h ├── OptionsColors.cpp ├── OptionsColors.h ├── OptionsEmots.cpp ├── OptionsEmots.h ├── OptionsGeneral.cpp ├── OptionsGeneral.h ├── PWCipher.cpp ├── PWCipher.h ├── PlayerList.cpp ├── PlayerList.h ├── PlayerView.cpp ├── PlayerView.h ├── Profile.cpp ├── Profile.h ├── ProgDlg.cpp ├── ProgDlg.h ├── ReadMe.txt ├── ResizingDialog.cpp ├── ResizingDialog.h ├── RichText.cpp ├── RichText.h ├── RoomPassword.cpp ├── RoomPassword.h ├── ServerFrame.cpp ├── ServerFrame.h ├── ServerList.cpp ├── ServerList.h ├── Skins │ ├── Blue.skn │ ├── Default.skn │ ├── Green.skn │ ├── Red.skn │ └── Steel.skn ├── SpamBlock.cpp ├── SpamBlock.h ├── SplitWnd.cpp ├── SplitWnd.h ├── StdAfx.cpp ├── StdAfx.h ├── TargetSxS.h ├── Tfxdatatip.cpp ├── Tfxdatatip.h ├── WebFrame.cpp ├── WebFrame.h ├── WebView.cpp ├── WebView.h ├── WordFilter.txt ├── XML │ └── CacheConfig.xml ├── colorbtn.clw ├── colorbtn.cpp ├── colorbtn.h ├── colorbtn.rc ├── config.ini ├── res │ ├── Avatar.ico │ ├── GCQL.exe.manifest │ ├── GCQL.ico │ ├── GCQL.rc2 │ ├── GCQLDoc.ico │ ├── Toolbar.bmp │ ├── Toolbar256.bmp │ ├── ToolbarCold256.bmp │ ├── avatar_a.ico │ ├── avatar_d.ico │ ├── avatar_m.ico │ ├── avatar_sub.ico │ ├── bmp00001.bmp │ ├── bmp00002.bmp │ ├── bmp00003.bmp │ ├── bmp00004.bmp │ ├── cancel.ico │ ├── caption.bmp │ ├── caption1.bmp │ ├── chat01.wav │ ├── clan.ico │ ├── clans.ico │ ├── down.ico │ ├── empty_ht.htm │ ├── friend.ico │ ├── friend_o.ico │ ├── friends.ico │ ├── game.ico │ ├── game1.ico │ ├── game2.ico │ ├── gamebar.bmp │ ├── gamebar1.bmp │ ├── gamebar256.bmp │ ├── games.ico │ ├── games1.ico │ ├── html1.htm │ ├── ico00001.ico │ ├── ico00002.ico │ ├── ico00003.ico │ ├── ico00004.ico │ ├── ico00005.ico │ ├── ico00006.ico │ ├── icon1.ico │ ├── ingame.ico │ ├── message.ico │ ├── message01.wav │ ├── online1.bmp │ ├── right.ico │ ├── room.ico │ ├── rooms.ico │ ├── rt_manif.bin │ ├── toolbar1.bmp │ └── up.ico └── resource.h ├── GCQPPC ├── AssemblyInfo.cs ├── ChatForm.cs ├── ChatForm.resx ├── GCQPPC.csdproj └── GCQPPC.csdproj.user ├── GameCQ.sln ├── GameCQInstall.nsi ├── Gcqs ├── GCQDll.h ├── GCQS.vcproj ├── GCQS.vcxproj ├── GCQS.vcxproj.filters ├── MasterServer.cpp ├── MasterServer.h ├── MetaServer.cpp ├── MetaServer.h ├── MetaServerCommands.cpp ├── ProcessServer.cpp ├── ProcessServer.h ├── WinGDB.xml └── makefile ├── HelpBot ├── Bot │ ├── AimlBot.dll │ ├── bf_activate.aiml │ ├── bf_anygood.aiml │ ├── bf_beta.aiml │ ├── bf_bomb.aiml │ ├── bf_cost.aiml │ ├── bf_coupon.aiml │ ├── bf_ead.aiml │ ├── bf_emotes.aiml │ ├── bf_engineer.aiml │ ├── bf_fontcolor.aiml │ ├── bf_howplay.aiml │ ├── bf_joinfleet.aiml │ ├── bf_joining_beta.aiml │ ├── bf_josef.aiml │ ├── bf_jumpgate.aiml │ ├── bf_manual.aiml │ ├── bf_metaverse.aiml │ ├── bf_missions.aiml │ ├── bf_mod.aiml │ ├── bf_namechange.aiml │ ├── bf_payment.aiml │ ├── bf_prestige.aiml │ ├── bf_ranks.aiml │ ├── bf_rules_of_conduct.aiml │ ├── bf_screenshot.aiml │ ├── bf_shipyard.aiml │ ├── bf_template.aiml │ ├── bf_usecoupon.aiml │ ├── bf_validate.aiml │ ├── bf_wormhole.aiml │ ├── bot.ini │ ├── c.aiml │ ├── data1.aiml │ ├── emotes.txt │ ├── errors.txt │ ├── gamegeneric.aiml │ ├── gossip.txt │ ├── localuser.txt │ ├── patterns.txt │ ├── person.txt │ ├── person2.txt │ ├── personf.txt │ ├── skeleton.txt │ ├── star.aiml │ ├── substitute.txt │ ├── templates.txt │ └── unsorted.txt ├── ChatLog.cpp ├── ChatLog.h ├── EmoteResponder.cpp ├── EmoteResponder.h ├── HelpBot.clw ├── HelpBot.cpp ├── HelpBot.h ├── HelpBot.ini ├── HelpBot.log.html ├── HelpBot.vcproj ├── HelpBot.vcxproj ├── HelpBot.vcxproj.filters ├── MessageLoop.cpp ├── MessageLoop.h ├── ResponseControl.cpp ├── ResponseControl.h ├── SmartSend.cpp ├── SmartSend.h └── main.cpp ├── LogServer ├── LogServer.cpp ├── LogServer.vcproj ├── LogServer.vcxproj ├── LogServer.vcxproj.filters ├── WinGDB.xml └── makefile ├── MetaServer ├── MetaServer.cpp ├── MetaServer.vcproj ├── MetaServer.vcxproj ├── MetaServer.vcxproj.filters ├── WinGDB.xml └── makefile ├── MirrorClient ├── MirrorClient.cpp ├── MirrorClient.vcproj ├── MirrorClient.vcxproj ├── MirrorClient.vcxproj.filters ├── ReadMe.txt ├── StdAfx.cpp └── StdAfx.h ├── MirrorServer ├── MirrorServer.cpp ├── MirrorServer.ini ├── MirrorServer.vcproj ├── MirrorServer.vcxproj ├── MirrorServer.vcxproj.filters ├── WinGDB.xml └── makefile ├── MirrorUpdate ├── MirrorUpdate.cpp ├── MirrorUpdate.vcproj ├── MirrorUpdate.vcxproj └── MirrorUpdate.vcxproj.filters ├── MirrorUpload ├── EditProfile.cpp ├── EditProfile.h ├── MirrorUpload.clw ├── MirrorUpload.cpp ├── MirrorUpload.h ├── MirrorUpload.rc ├── MirrorUpload.vcproj ├── MirrorUpload.vcxproj ├── MirrorUpload.vcxproj.filters ├── MirrorUploadDlg.cpp ├── MirrorUploadDlg.h ├── ReadMe.txt ├── StdAfx.cpp ├── StdAfx.h ├── UploadThread.h ├── res │ ├── MirrorUpload.ico │ └── MirrorUpload.rc2 └── resource.h ├── ProcessClient ├── EditDialog.cpp ├── EditDialog.h ├── Process.cpp ├── Process.h ├── ProcessClient.cpp ├── ProcessClient.h ├── ProcessClient.rc ├── ProcessClient.vcproj ├── ProcessClient.vcxproj ├── ProcessClient.vcxproj.filters ├── ProcessLog.cpp ├── ProcessLog.h ├── ProcessSearchLogs.cpp ├── ProcessSearchLogs.h ├── ProcessServer.cpp ├── ProcessServer.h ├── ReadMe.txt ├── res │ ├── ProcessClient.ico │ ├── ProcessClient.manifest │ └── ProcessClient.rc2 ├── resource.h ├── stdafx.cpp └── stdafx.h ├── ProcessClientCLI ├── ProcessClientCLI.cpp ├── ProcessClientCLI.vcproj ├── ProcessClientCLI.vcxproj ├── ProcessClientCLI.vcxproj.filters ├── TestCLI.ini ├── WinGDB.xml └── makefile ├── ProcessServer ├── PDH.LIB ├── ProcessServer.cpp ├── ProcessServer.ini ├── ProcessServer.vcproj ├── ProcessServer.vcxproj ├── ProcessServer.vcxproj.filters ├── WinGDB.xml ├── makefile ├── pdh.dll ├── perfmon.cpp ├── perfmon.h └── perfmon_src.zip ├── README.md ├── RotateLogs ├── RotateLogs.cpp ├── RotateLogs.vcproj ├── RotateLogs.vcxproj ├── RotateLogs.vcxproj.filters ├── WinGDB.xml └── makefile ├── Scripts ├── BackupCron.sh ├── CoreCommands ├── CoreWatchCron.sh └── ProcessServerCron.sh ├── Servers.sln ├── Service ├── MSG00000.bin ├── NTService.cpp ├── NTService.h ├── NTServiceEventLogMsg.clw ├── NTServiceEventLogMsg.h ├── NTServiceEventLogMsg.mc ├── NTServiceEventLogMsg.rc ├── Readme.txt ├── Service.cpp ├── Service.h ├── Service.vcproj ├── Service.vcxproj ├── Service.vcxproj.filters ├── main.cpp └── resource.h ├── SmartUpdate ├── PSAPI.H ├── ProgDlg.cpp ├── ProgDlg.h ├── ReadMe.txt ├── SimpleProcessAPI.cpp ├── SimpleProcessAPI.h ├── SmartUpdate.clw ├── SmartUpdate.cpp ├── SmartUpdate.h ├── SmartUpdate.rc ├── SmartUpdate.vcproj ├── SmartUpdate.vcxproj ├── SmartUpdate.vcxproj.filters ├── SmartUpdateVS2003.vcproj ├── StdAfx.cpp ├── StdAfx.h ├── WhoSLocking.zip ├── res │ ├── SmartUpdate.ico │ └── SmartUpdate.rc2 └── resource.h ├── StopServer ├── ReadMe.txt ├── StdAfx.cpp ├── StdAfx.h ├── StopServer.cpp ├── StopServer.vcproj ├── StopServer.vcxproj └── StopServer.vcxproj.filters ├── ThirdParty ├── BCGControlBar │ └── BCGControlBar │ │ ├── BCGAccessibility.h │ │ ├── BCGAnimCtrl.cpp │ │ ├── BCGAnimCtrl.h │ │ ├── BCGAppBarWnd.cpp │ │ ├── BCGAppBarWnd.h │ │ ├── BCGButton.cpp │ │ ├── BCGButton.h │ │ ├── BCGCB.h │ │ ├── BCGCaptionBar.cpp │ │ ├── BCGCaptionBar.h │ │ ├── BCGColorBar.cpp │ │ ├── BCGColorBar.h │ │ ├── BCGColorButton.cpp │ │ ├── BCGColorButton.h │ │ ├── BCGColorDialog.cpp │ │ ├── BCGColorDialog.h │ │ ├── BCGColorMenuButton.cpp │ │ ├── BCGColorMenuButton.h │ │ ├── BCGCommandManager.cpp │ │ ├── BCGCommandManager.h │ │ ├── BCGContextMenuManager.cpp │ │ ├── BCGContextMenuManager.h │ │ ├── BCGControlBar.cpp │ │ ├── BCGControlBar.def │ │ ├── BCGControlBar.dsp │ │ ├── BCGControlBar.dsw │ │ ├── BCGControlBar.h │ │ ├── BCGControlBar.rc │ │ ├── BCGControlBar.sln │ │ ├── BCGControlBar.vcproj │ │ ├── BCGControlBar71.sln │ │ ├── BCGControlBar71.vcproj │ │ ├── BCGControlBar71.vcxproj │ │ ├── BCGControlBar71.vcxproj.filters │ │ ├── BCGControlBar80.sln │ │ ├── BCGControlBar80.vcproj │ │ ├── BCGControlBarImpl.cpp │ │ ├── BCGControlBarImpl.h │ │ ├── BCGControlBarStatic.dsp │ │ ├── BCGControlBarStatic.dsw │ │ ├── BCGControlBarStatic.sln │ │ ├── BCGControlBarStatic.vcproj │ │ ├── BCGControlBarStatic71.sln │ │ ├── BCGControlBarStatic71.vcproj │ │ ├── BCGControlBarStatic80.sln │ │ ├── BCGControlBarStatic80.vcproj │ │ ├── BCGCustomizeMenuButton.cpp │ │ ├── BCGCustomizeMenuButton.h │ │ ├── BCGDialog.cpp │ │ ├── BCGDialog.h │ │ ├── BCGDialogBar.cpp │ │ ├── BCGDialogBar.h │ │ ├── BCGDlgImpl.cpp │ │ ├── BCGDlgImpl.h │ │ ├── BCGDockBar.h │ │ ├── BCGDockContext.cpp │ │ ├── BCGDockContext.h │ │ ├── BCGDrawManager.cpp │ │ ├── BCGDrawManager.h │ │ ├── BCGDropDown.cpp │ │ ├── BCGDropDown.h │ │ ├── BCGEditListBox.cpp │ │ ├── BCGEditListBox.h │ │ ├── BCGExCheckList.cpp │ │ ├── BCGExCheckList.h │ │ ├── BCGFileDialog.cpp │ │ ├── BCGFileDialog.h │ │ ├── BCGFontComboBox.cpp │ │ ├── BCGFontComboBox.h │ │ ├── BCGFrameImpl.cpp │ │ ├── BCGFrameImpl.h │ │ ├── BCGFrameImplEval.cpp │ │ ├── BCGFrameWnd.cpp │ │ ├── BCGFrameWnd.h │ │ ├── BCGHeaderCtrl.cpp │ │ ├── BCGHeaderCtrl.h │ │ ├── BCGInit.h │ │ ├── BCGInplaceToolTipCtrl.cpp │ │ ├── BCGInplaceToolTipCtrl.h │ │ ├── BCGKeyMapDlg.cpp │ │ ├── BCGKeyMapDlg.h │ │ ├── BCGKeyboardManager.cpp │ │ ├── BCGKeyboardManager.h │ │ ├── BCGListCtrl.cpp │ │ ├── BCGListCtrl.h │ │ ├── BCGLocalRes.cpp │ │ ├── BCGMDIChildWnd.cpp │ │ ├── BCGMDIChildWnd.h │ │ ├── BCGMDIFrameWnd.cpp │ │ ├── BCGMDIFrameWnd.h │ │ ├── BCGMainClientAreaWnd.cpp │ │ ├── BCGMainClientAreaWnd.h │ │ ├── BCGMaskEdit.cpp │ │ ├── BCGMaskEdit.h │ │ ├── BCGMenuBar.cpp │ │ ├── BCGMenuBar.h │ │ ├── BCGMenuButton.cpp │ │ ├── BCGMenuButton.h │ │ ├── BCGMouseManager.cpp │ │ ├── BCGMouseManager.h │ │ ├── BCGMultiDocTemplate.h │ │ ├── BCGOleDocIPFrameWnd.cpp │ │ ├── BCGOleDocIPFrameWnd.h │ │ ├── BCGOleIPFrameWnd.cpp │ │ ├── BCGOleIPFrameWnd.h │ │ ├── BCGOutlookButton.cpp │ │ ├── BCGOutlookButton.h │ │ ├── BCGPopupDlg.cpp │ │ ├── BCGPopupDlg.h │ │ ├── BCGPopupMenu.cpp │ │ ├── BCGPopupMenu.h │ │ ├── BCGPopupMenuBar.cpp │ │ ├── BCGPopupMenuBar.h │ │ ├── BCGPopupWindow.cpp │ │ ├── BCGPopupWindow.h │ │ ├── BCGPrintPreviewView.cpp │ │ ├── BCGPrintPreviewView.h │ │ ├── BCGPropList.cpp │ │ ├── BCGPropList.h │ │ ├── BCGPropertyPage.cpp │ │ ├── BCGPropertyPage.h │ │ ├── BCGPropertySheet.cpp │ │ ├── BCGPropertySheet.h │ │ ├── BCGRegistry.cpp │ │ ├── BCGRegistry.h │ │ ├── BCGSelectSkinDlg.cpp │ │ ├── BCGSelectSkinDlg.h │ │ ├── BCGShellList.cpp │ │ ├── BCGShellList.h │ │ ├── BCGShellManager.cpp │ │ ├── BCGShellManager.h │ │ ├── BCGShellPIDL.cpp │ │ ├── BCGShellPIDL.h │ │ ├── BCGShellTree.cpp │ │ ├── BCGShellTree.h │ │ ├── BCGShowAllButton.cpp │ │ ├── BCGShowAllButton.h │ │ ├── BCGSizingControlBar.cpp │ │ ├── BCGSizingControlBar.h │ │ ├── BCGSkinEntry.h │ │ ├── BCGSkinManager.cpp │ │ ├── BCGSkinManager.h │ │ ├── BCGSpinButtonCtrl.cpp │ │ ├── BCGSpinButtonCtrl.h │ │ ├── BCGSplitterWnd.cpp │ │ ├── BCGSplitterWnd.h │ │ ├── BCGStatusBar.cpp │ │ ├── BCGStatusBar.h │ │ ├── BCGTabView.cpp │ │ ├── BCGTabView.h │ │ ├── BCGTasksPane.cpp │ │ ├── BCGTasksPane.h │ │ ├── BCGTearOffManager.cpp │ │ ├── BCGTearOffManager.h │ │ ├── BCGToolBar.cpp │ │ ├── BCGToolBar.h │ │ ├── BCGToolBarImages.cpp │ │ ├── BCGToolBarImages.h │ │ ├── BCGToolbarButton.cpp │ │ ├── BCGToolbarButton.h │ │ ├── BCGToolbarComboBoxButton.cpp │ │ ├── BCGToolbarComboBoxButton.h │ │ ├── BCGToolbarDateTimeCtrl.cpp │ │ ├── BCGToolbarDateTimeCtrl.h │ │ ├── BCGToolbarDropSource.cpp │ │ ├── BCGToolbarDropSource.h │ │ ├── BCGToolbarDropTarget.cpp │ │ ├── BCGToolbarDropTarget.h │ │ ├── BCGToolbarEditBoxButton.cpp │ │ ├── BCGToolbarEditBoxButton.h │ │ ├── BCGToolbarFontCombo.cpp │ │ ├── BCGToolbarFontCombo.h │ │ ├── BCGToolbarMenuButton.cpp │ │ ├── BCGToolbarMenuButton.h │ │ ├── BCGToolbarMenuButtonsButton.cpp │ │ ├── BCGToolbarMenuButtonsButton.h │ │ ├── BCGToolbarRegularMenuButton.cpp │ │ ├── BCGToolbarRegularMenuButton.h │ │ ├── BCGToolbarSpinEditBoxButton.cpp │ │ ├── BCGToolbarSpinEditBoxButton.h │ │ ├── BCGToolbarSystemMenuButton.cpp │ │ ├── BCGToolbarSystemMenuButton.h │ │ ├── BCGToolsPage.cpp │ │ ├── BCGToolsPage.h │ │ ├── BCGURLLinkButton.cpp │ │ ├── BCGURLLinkButton.h │ │ ├── BCGUserTool.cpp │ │ ├── BCGUserTool.h │ │ ├── BCGUserToolsManager.cpp │ │ ├── BCGUserToolsManager.h │ │ ├── BCGVisualManager.cpp │ │ ├── BCGVisualManager.h │ │ ├── BCGVisualManager2003.cpp │ │ ├── BCGVisualManager2003.h │ │ ├── BCGVisualManagerVS2005.cpp │ │ ├── BCGVisualManagerVS2005.h │ │ ├── BCGVisualManagerXP.cpp │ │ ├── BCGVisualManagerXP.h │ │ ├── BCGWinXPVisualManager.cpp │ │ ├── BCGWinXPVisualManager.h │ │ ├── BCGWindowsManagerDlg.cpp │ │ ├── BCGWindowsManagerDlg.h │ │ ├── BCGWorkspace.cpp │ │ ├── BCGWorkspace.h │ │ ├── ButtonAppearanceDlg.cpp │ │ ├── ButtonAppearanceDlg.h │ │ ├── ButtonsList.cpp │ │ ├── ButtonsList.h │ │ ├── ButtonsTextList.cpp │ │ ├── ButtonsTextList.h │ │ ├── CBCGToolbarCustomize.cpp │ │ ├── CBCGToolbarCustomize.h │ │ ├── CBCGToolbarCustomizePages.cpp │ │ ├── CBCGToolbarCustomizePages.h │ │ ├── CmdUsageCount.cpp │ │ ├── CmdUsageCount.h │ │ ├── ColorPage1.cpp │ │ ├── ColorPage1.h │ │ ├── ColorPage2.cpp │ │ ├── ColorPage2.h │ │ ├── ColorPopup.cpp │ │ ├── ColorPopup.h │ │ ├── CustomizeButton.cpp │ │ ├── CustomizeButton.h │ │ ├── GLOBALS.CPP │ │ ├── GLOBALS.H │ │ ├── ImageEditDlg.cpp │ │ ├── ImageEditDlg.h │ │ ├── ImageHash.cpp │ │ ├── ImageHash.h │ │ ├── ImagePaintArea.cpp │ │ ├── ImagePaintArea.h │ │ ├── KeyAssign.cpp │ │ ├── KeyAssign.h │ │ ├── KeyHelper.cpp │ │ ├── KeyHelper.h │ │ ├── KeyboardPage.cpp │ │ ├── KeyboardPage.h │ │ ├── MenuHash.cpp │ │ ├── MenuHash.h │ │ ├── MenuImages.cpp │ │ ├── MenuImages.h │ │ ├── MenuPage.cpp │ │ ├── MenuPage.h │ │ ├── MousePage.cpp │ │ ├── MousePage.h │ │ ├── OptionsPage.cpp │ │ ├── OptionsPage.h │ │ ├── PowerColorPicker.cpp │ │ ├── PropertySheetCtrl.cpp │ │ ├── PropertySheetCtrl.h │ │ ├── ReadMe.txt │ │ ├── RebarState.cpp │ │ ├── RebarState.h │ │ ├── RegPath.cpp │ │ ├── RegPath.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TargetSxS.h │ │ ├── ToolbarNameDlg.cpp │ │ ├── ToolbarNameDlg.h │ │ ├── TrackMouse.cpp │ │ ├── TrackMouse.h │ │ ├── bcgbarres.h │ │ ├── bcgcbver.h │ │ ├── bcghelpids.h │ │ ├── bcginit.cpp │ │ ├── bcglocalres.h │ │ ├── bcgoutlookbar.cpp │ │ ├── bcgoutlookbar.h │ │ ├── bcgsound.cpp │ │ ├── bcgsound.h │ │ ├── bcgtabwnd.cpp │ │ ├── bcgtabwnd.h │ │ ├── help │ │ ├── BCGControlBar.hm │ │ └── BCG_Popup_English.rtf │ │ ├── powercolorpicker.h │ │ └── res │ │ ├── BCGControlBar.rc2 │ │ ├── PrintPreview.bmp │ │ ├── PrintPreview32.bmp │ │ ├── arrows.bmp │ │ ├── color.cur │ │ ├── copy.bmp │ │ ├── copy.cur │ │ ├── copy32.bmp │ │ ├── delete.bmp │ │ ├── delete.cur │ │ ├── delete32.bmp │ │ ├── down.bmp │ │ ├── down32.bmp │ │ ├── ellipse.cur │ │ ├── fill.cur │ │ ├── font.bmp │ │ ├── hand.cur │ │ ├── help-pro32.bmp │ │ ├── help.bmp │ │ ├── help.ico │ │ ├── line.cur │ │ ├── logo24.bmp │ │ ├── mail.bmp │ │ ├── menuimg.bmp │ │ ├── move.cur │ │ ├── new.bmp │ │ ├── new32.bmp │ │ ├── palette.bmp │ │ ├── palette32.bmp │ │ ├── pen.cur │ │ ├── picker.bmp │ │ ├── print.bmp │ │ ├── print32.bmp │ │ ├── rect.cur │ │ ├── taskpane.bmp │ │ ├── taskpane32.bmp │ │ ├── tool.ico │ │ ├── up.bmp │ │ ├── up32.bmp │ │ └── url.bmp ├── mysql │ ├── x86-Linux │ │ ├── COPYING │ │ ├── EXCEPTIONS-CLIENT │ │ ├── README │ │ ├── include │ │ │ ├── atomic │ │ │ │ ├── gcc_builtins.h │ │ │ │ ├── generic-msvc.h │ │ │ │ ├── nolock.h │ │ │ │ ├── rwlock.h │ │ │ │ └── x86-gcc.h │ │ │ ├── base64.h │ │ │ ├── config-win.h │ │ │ ├── decimal.h │ │ │ ├── errmsg.h │ │ │ ├── hash.h │ │ │ ├── keycache.h │ │ │ ├── lf.h │ │ │ ├── m_ctype.h │ │ │ ├── m_string.h │ │ │ ├── my_aes.h │ │ │ ├── my_alarm.h │ │ │ ├── my_alloc.h │ │ │ ├── my_atomic.h │ │ │ ├── my_attribute.h │ │ │ ├── my_base.h │ │ │ ├── my_bit.h │ │ │ ├── my_bitmap.h │ │ │ ├── my_charsets.h │ │ │ ├── my_config.h │ │ │ ├── my_dbug.h │ │ │ ├── my_dir.h │ │ │ ├── my_getopt.h │ │ │ ├── my_global.h │ │ │ ├── my_libwrap.h │ │ │ ├── my_list.h │ │ │ ├── my_md5.h │ │ │ ├── my_net.h │ │ │ ├── my_no_pthread.h │ │ │ ├── my_nosys.h │ │ │ ├── my_pthread.h │ │ │ ├── my_stacktrace.h │ │ │ ├── my_sys.h │ │ │ ├── my_time.h │ │ │ ├── my_tree.h │ │ │ ├── my_trie.h │ │ │ ├── my_uctype.h │ │ │ ├── my_vle.h │ │ │ ├── my_xml.h │ │ │ ├── myisampack.h │ │ │ ├── mysql.h │ │ │ ├── mysql_com.h │ │ │ ├── mysql_time.h │ │ │ ├── mysql_version.h │ │ │ ├── mysqld_error.h │ │ │ ├── mysys │ │ │ │ └── rijndael.h │ │ │ ├── mysys_err.h │ │ │ ├── queues.h │ │ │ ├── service_versions.h │ │ │ ├── sha1.h │ │ │ ├── sha2.h │ │ │ ├── sql_common.h │ │ │ ├── sslopt-case.h │ │ │ ├── sslopt-longopts.h │ │ │ ├── sslopt-vars.h │ │ │ ├── t_ctype.h │ │ │ ├── thr_alarm.h │ │ │ ├── thr_lock.h │ │ │ ├── typelib.h │ │ │ ├── violite.h │ │ │ ├── waiting_threads.h │ │ │ └── wqueue.h │ │ └── lib │ │ │ ├── libmysql.so │ │ │ └── libmysqlclient.a │ └── x86-Win32 │ │ ├── include │ │ ├── atomic │ │ │ ├── gcc_builtins.h │ │ │ ├── generic-msvc.h │ │ │ ├── nolock.h │ │ │ ├── rwlock.h │ │ │ └── x86-gcc.h │ │ ├── base64.h │ │ ├── config-win.h │ │ ├── decimal.h │ │ ├── errmsg.h │ │ ├── hash.h │ │ ├── keycache.h │ │ ├── lf.h │ │ ├── m_ctype.h │ │ ├── m_string.h │ │ ├── my_aes.h │ │ ├── my_alarm.h │ │ ├── my_alloc.h │ │ ├── my_atomic.h │ │ ├── my_attribute.h │ │ ├── my_base.h │ │ ├── my_bit.h │ │ ├── my_bitmap.h │ │ ├── my_charsets.h │ │ ├── my_config.h │ │ ├── my_dbug.h │ │ ├── my_dir.h │ │ ├── my_getopt.h │ │ ├── my_global.h │ │ ├── my_libwrap.h │ │ ├── my_list.h │ │ ├── my_md5.h │ │ ├── my_net.h │ │ ├── my_no_pthread.h │ │ ├── my_nosys.h │ │ ├── my_pthread.h │ │ ├── my_stacktrace.h │ │ ├── my_sys.h │ │ ├── my_time.h │ │ ├── my_tree.h │ │ ├── my_trie.h │ │ ├── my_uctype.h │ │ ├── my_vle.h │ │ ├── my_xml.h │ │ ├── myisampack.h │ │ ├── mysql.h │ │ ├── mysql_com.h │ │ ├── mysql_time.h │ │ ├── mysql_version.h │ │ ├── mysqld_error.h │ │ ├── mysys │ │ │ └── rijndael.h │ │ ├── mysys_err.h │ │ ├── queues.h │ │ ├── service_versions.h │ │ ├── sha1.h │ │ ├── sha2.h │ │ ├── sql_common.h │ │ ├── sslopt-case.h │ │ ├── sslopt-longopts.h │ │ ├── sslopt-vars.h │ │ ├── t_ctype.h │ │ ├── thr_alarm.h │ │ ├── thr_lock.h │ │ ├── typelib.h │ │ ├── violite.h │ │ ├── waiting_threads.h │ │ └── wqueue.h │ │ └── lib │ │ ├── libmysql.dll │ │ ├── libmysql.lib │ │ └── mysqlclient.lib └── tinyxml │ ├── Makefile │ ├── TargetSxS.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxml.sln │ ├── tinyxml.vcproj │ ├── tinyxml.vcxproj │ ├── tinyxml.vcxproj.filters │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── Web.sln ├── YAM ├── ChatEdit.cpp ├── ChatEdit.h ├── ChatView.cpp ├── ChatView.h ├── ChatWindow.cpp ├── ChatWindow.h ├── FilterText.cpp ├── FilterText.h ├── FriendList.cpp ├── FriendList.h ├── PWCipher.cpp ├── PWCipher.h ├── ResizingDialog.cpp ├── ResizingDialog.h ├── StdAfx.cpp ├── StdAfx.h ├── SystemTray.cpp ├── SystemTray.h ├── Tfxdatatip.cpp ├── Tfxdatatip.h ├── Yam.rc ├── res │ ├── Avatar.ico │ ├── activity.ico │ ├── avatar_a.ico │ ├── avatar_m.ico │ ├── empty_ht.htm │ ├── ico00001.ico │ ├── ico00004.ico │ ├── ico00005.ico │ ├── yam.ico │ ├── yam.rc2 │ └── yamOld.ico ├── resource.h ├── yam.clw ├── yam.cpp ├── yam.h ├── yamDlg.cpp └── yamDlg.h ├── gamecq.sql └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/.gitignore -------------------------------------------------------------------------------- /Bin/VC_redist.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Bin/VC_redist.x86.exe -------------------------------------------------------------------------------- /Bin/install.ini: -------------------------------------------------------------------------------- 1 | [SmartUpdate] -------------------------------------------------------------------------------- /Bin/vcredist_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Bin/vcredist_x86.exe -------------------------------------------------------------------------------- /Build/GCQLBuildDebug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Build/GCQLBuildDebug.bat -------------------------------------------------------------------------------- /Build/GCQLBuildRelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Build/GCQLBuildRelease.bat -------------------------------------------------------------------------------- /ChronDemon/ChronDemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/ChronDemon.cpp -------------------------------------------------------------------------------- /ChronDemon/ChronDemon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/ChronDemon.ini -------------------------------------------------------------------------------- /ChronDemon/ChronDemon.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/ChronDemon.vcproj -------------------------------------------------------------------------------- /ChronDemon/ChronDemon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/ChronDemon.vcxproj -------------------------------------------------------------------------------- /ChronDemon/ChronDemon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/ChronDemon.vcxproj.filters -------------------------------------------------------------------------------- /ChronDemon/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/WinGDB.xml -------------------------------------------------------------------------------- /ChronDemon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ChronDemon/makefile -------------------------------------------------------------------------------- /Docs/Docs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Docs/Docs.vcproj -------------------------------------------------------------------------------- /Docs/Docs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Docs/Docs.vcxproj -------------------------------------------------------------------------------- /Docs/GameCQ Overview.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Docs/GameCQ Overview.doc -------------------------------------------------------------------------------- /GCQDB/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/Database.cpp -------------------------------------------------------------------------------- /GCQDB/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/Database.h -------------------------------------------------------------------------------- /GCQDB/DatabaseMYSQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/DatabaseMYSQL.cpp -------------------------------------------------------------------------------- /GCQDB/DatabaseMYSQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/DatabaseMYSQL.h -------------------------------------------------------------------------------- /GCQDB/GCQDB.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/GCQDB.vcproj -------------------------------------------------------------------------------- /GCQDB/GCQDB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/GCQDB.vcxproj -------------------------------------------------------------------------------- /GCQDB/GCQDB.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/GCQDB.vcxproj.filters -------------------------------------------------------------------------------- /GCQDB/GCQDBDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/GCQDBDll.h -------------------------------------------------------------------------------- /GCQDB/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/WinGDB.xml -------------------------------------------------------------------------------- /GCQDB/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQDB/makefile -------------------------------------------------------------------------------- /GCQL.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL.clw -------------------------------------------------------------------------------- /GCQL/AdminRights.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/AdminRights.xml -------------------------------------------------------------------------------- /GCQL/CacheFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CacheFrame.cpp -------------------------------------------------------------------------------- /GCQL/CacheFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CacheFrame.h -------------------------------------------------------------------------------- /GCQL/CacheList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CacheList.cpp -------------------------------------------------------------------------------- /GCQL/CacheList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CacheList.h -------------------------------------------------------------------------------- /GCQL/CaptionBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CaptionBar.cpp -------------------------------------------------------------------------------- /GCQL/CaptionBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CaptionBar.h -------------------------------------------------------------------------------- /GCQL/ChangeEmail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChangeEmail.cpp -------------------------------------------------------------------------------- /GCQL/ChangeEmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChangeEmail.h -------------------------------------------------------------------------------- /GCQL/ChangeName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChangeName.cpp -------------------------------------------------------------------------------- /GCQL/ChangeName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChangeName.h -------------------------------------------------------------------------------- /GCQL/ChangePassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChangePassword.cpp -------------------------------------------------------------------------------- /GCQL/ChangePassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChangePassword.h -------------------------------------------------------------------------------- /GCQL/ChatEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatEdit.cpp -------------------------------------------------------------------------------- /GCQL/ChatEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatEdit.h -------------------------------------------------------------------------------- /GCQL/ChatFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatFrame.cpp -------------------------------------------------------------------------------- /GCQL/ChatFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatFrame.h -------------------------------------------------------------------------------- /GCQL/ChatLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatLog.cpp -------------------------------------------------------------------------------- /GCQL/ChatLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatLog.h -------------------------------------------------------------------------------- /GCQL/ChatView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatView.cpp -------------------------------------------------------------------------------- /GCQL/ChatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ChatView.h -------------------------------------------------------------------------------- /GCQL/CreateRoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CreateRoom.cpp -------------------------------------------------------------------------------- /GCQL/CreateRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/CreateRoom.h -------------------------------------------------------------------------------- /GCQL/EditEmotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/EditEmotion.cpp -------------------------------------------------------------------------------- /GCQL/EditEmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/EditEmotion.h -------------------------------------------------------------------------------- /GCQL/Eula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Eula.cpp -------------------------------------------------------------------------------- /GCQL/Eula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Eula.h -------------------------------------------------------------------------------- /GCQL/Eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Eula.txt -------------------------------------------------------------------------------- /GCQL/FieldValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/FieldValue.cpp -------------------------------------------------------------------------------- /GCQL/FieldValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/FieldValue.h -------------------------------------------------------------------------------- /GCQL/FilterText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/FilterText.cpp -------------------------------------------------------------------------------- /GCQL/FilterText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/FilterText.h -------------------------------------------------------------------------------- /GCQL/FindUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/FindUser.cpp -------------------------------------------------------------------------------- /GCQL/FindUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/FindUser.h -------------------------------------------------------------------------------- /GCQL/GCQL.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.APS -------------------------------------------------------------------------------- /GCQL/GCQL.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.clw -------------------------------------------------------------------------------- /GCQL/GCQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.cpp -------------------------------------------------------------------------------- /GCQL/GCQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.h -------------------------------------------------------------------------------- /GCQL/GCQL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.rc -------------------------------------------------------------------------------- /GCQL/GCQL.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.reg -------------------------------------------------------------------------------- /GCQL/GCQL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.vcproj -------------------------------------------------------------------------------- /GCQL/GCQL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.vcxproj -------------------------------------------------------------------------------- /GCQL/GCQL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQL.vcxproj.filters -------------------------------------------------------------------------------- /GCQL/GCQLDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQLDoc.cpp -------------------------------------------------------------------------------- /GCQL/GCQLDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQLDoc.h -------------------------------------------------------------------------------- /GCQL/GCQStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQStyle.cpp -------------------------------------------------------------------------------- /GCQL/GCQStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/GCQStyle.h -------------------------------------------------------------------------------- /GCQL/Ignores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Ignores.cpp -------------------------------------------------------------------------------- /GCQL/Ignores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Ignores.h -------------------------------------------------------------------------------- /GCQL/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Login.cpp -------------------------------------------------------------------------------- /GCQL/Login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Login.h -------------------------------------------------------------------------------- /GCQL/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/MainFrame.cpp -------------------------------------------------------------------------------- /GCQL/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/MainFrame.h -------------------------------------------------------------------------------- /GCQL/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Message.cpp -------------------------------------------------------------------------------- /GCQL/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Message.h -------------------------------------------------------------------------------- /GCQL/NewLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/NewLogin.cpp -------------------------------------------------------------------------------- /GCQL/NewLogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/NewLogin.h -------------------------------------------------------------------------------- /GCQL/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Options.cpp -------------------------------------------------------------------------------- /GCQL/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Options.h -------------------------------------------------------------------------------- /GCQL/OptionsColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/OptionsColors.cpp -------------------------------------------------------------------------------- /GCQL/OptionsColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/OptionsColors.h -------------------------------------------------------------------------------- /GCQL/OptionsEmots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/OptionsEmots.cpp -------------------------------------------------------------------------------- /GCQL/OptionsEmots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/OptionsEmots.h -------------------------------------------------------------------------------- /GCQL/OptionsGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/OptionsGeneral.cpp -------------------------------------------------------------------------------- /GCQL/OptionsGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/OptionsGeneral.h -------------------------------------------------------------------------------- /GCQL/PWCipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/PWCipher.cpp -------------------------------------------------------------------------------- /GCQL/PWCipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/PWCipher.h -------------------------------------------------------------------------------- /GCQL/PlayerList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/PlayerList.cpp -------------------------------------------------------------------------------- /GCQL/PlayerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/PlayerList.h -------------------------------------------------------------------------------- /GCQL/PlayerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/PlayerView.cpp -------------------------------------------------------------------------------- /GCQL/PlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/PlayerView.h -------------------------------------------------------------------------------- /GCQL/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Profile.cpp -------------------------------------------------------------------------------- /GCQL/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Profile.h -------------------------------------------------------------------------------- /GCQL/ProgDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ProgDlg.cpp -------------------------------------------------------------------------------- /GCQL/ProgDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ProgDlg.h -------------------------------------------------------------------------------- /GCQL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ReadMe.txt -------------------------------------------------------------------------------- /GCQL/ResizingDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ResizingDialog.cpp -------------------------------------------------------------------------------- /GCQL/ResizingDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ResizingDialog.h -------------------------------------------------------------------------------- /GCQL/RichText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/RichText.cpp -------------------------------------------------------------------------------- /GCQL/RichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/RichText.h -------------------------------------------------------------------------------- /GCQL/RoomPassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/RoomPassword.cpp -------------------------------------------------------------------------------- /GCQL/RoomPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/RoomPassword.h -------------------------------------------------------------------------------- /GCQL/ServerFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ServerFrame.cpp -------------------------------------------------------------------------------- /GCQL/ServerFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ServerFrame.h -------------------------------------------------------------------------------- /GCQL/ServerList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ServerList.cpp -------------------------------------------------------------------------------- /GCQL/ServerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/ServerList.h -------------------------------------------------------------------------------- /GCQL/Skins/Blue.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Skins/Blue.skn -------------------------------------------------------------------------------- /GCQL/Skins/Default.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Skins/Default.skn -------------------------------------------------------------------------------- /GCQL/Skins/Green.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Skins/Green.skn -------------------------------------------------------------------------------- /GCQL/Skins/Red.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Skins/Red.skn -------------------------------------------------------------------------------- /GCQL/Skins/Steel.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Skins/Steel.skn -------------------------------------------------------------------------------- /GCQL/SpamBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/SpamBlock.cpp -------------------------------------------------------------------------------- /GCQL/SpamBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/SpamBlock.h -------------------------------------------------------------------------------- /GCQL/SplitWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/SplitWnd.cpp -------------------------------------------------------------------------------- /GCQL/SplitWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/SplitWnd.h -------------------------------------------------------------------------------- /GCQL/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/StdAfx.cpp -------------------------------------------------------------------------------- /GCQL/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/StdAfx.h -------------------------------------------------------------------------------- /GCQL/TargetSxS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/TargetSxS.h -------------------------------------------------------------------------------- /GCQL/Tfxdatatip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Tfxdatatip.cpp -------------------------------------------------------------------------------- /GCQL/Tfxdatatip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/Tfxdatatip.h -------------------------------------------------------------------------------- /GCQL/WebFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/WebFrame.cpp -------------------------------------------------------------------------------- /GCQL/WebFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/WebFrame.h -------------------------------------------------------------------------------- /GCQL/WebView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/WebView.cpp -------------------------------------------------------------------------------- /GCQL/WebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/WebView.h -------------------------------------------------------------------------------- /GCQL/WordFilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/WordFilter.txt -------------------------------------------------------------------------------- /GCQL/XML/CacheConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/XML/CacheConfig.xml -------------------------------------------------------------------------------- /GCQL/colorbtn.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/colorbtn.clw -------------------------------------------------------------------------------- /GCQL/colorbtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/colorbtn.cpp -------------------------------------------------------------------------------- /GCQL/colorbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/colorbtn.h -------------------------------------------------------------------------------- /GCQL/colorbtn.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/colorbtn.rc -------------------------------------------------------------------------------- /GCQL/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/config.ini -------------------------------------------------------------------------------- /GCQL/res/Avatar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/Avatar.ico -------------------------------------------------------------------------------- /GCQL/res/GCQL.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/GCQL.exe.manifest -------------------------------------------------------------------------------- /GCQL/res/GCQL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/GCQL.ico -------------------------------------------------------------------------------- /GCQL/res/GCQL.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/GCQL.rc2 -------------------------------------------------------------------------------- /GCQL/res/GCQLDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/GCQLDoc.ico -------------------------------------------------------------------------------- /GCQL/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/Toolbar.bmp -------------------------------------------------------------------------------- /GCQL/res/Toolbar256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/Toolbar256.bmp -------------------------------------------------------------------------------- /GCQL/res/ToolbarCold256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ToolbarCold256.bmp -------------------------------------------------------------------------------- /GCQL/res/avatar_a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/avatar_a.ico -------------------------------------------------------------------------------- /GCQL/res/avatar_d.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/avatar_d.ico -------------------------------------------------------------------------------- /GCQL/res/avatar_m.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/avatar_m.ico -------------------------------------------------------------------------------- /GCQL/res/avatar_sub.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/avatar_sub.ico -------------------------------------------------------------------------------- /GCQL/res/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/bmp00001.bmp -------------------------------------------------------------------------------- /GCQL/res/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/bmp00002.bmp -------------------------------------------------------------------------------- /GCQL/res/bmp00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/bmp00003.bmp -------------------------------------------------------------------------------- /GCQL/res/bmp00004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/bmp00004.bmp -------------------------------------------------------------------------------- /GCQL/res/cancel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/cancel.ico -------------------------------------------------------------------------------- /GCQL/res/caption.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/caption.bmp -------------------------------------------------------------------------------- /GCQL/res/caption1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/caption1.bmp -------------------------------------------------------------------------------- /GCQL/res/chat01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/chat01.wav -------------------------------------------------------------------------------- /GCQL/res/clan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/clan.ico -------------------------------------------------------------------------------- /GCQL/res/clans.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/clans.ico -------------------------------------------------------------------------------- /GCQL/res/down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/down.ico -------------------------------------------------------------------------------- /GCQL/res/empty_ht.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/empty_ht.htm -------------------------------------------------------------------------------- /GCQL/res/friend.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/friend.ico -------------------------------------------------------------------------------- /GCQL/res/friend_o.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/friend_o.ico -------------------------------------------------------------------------------- /GCQL/res/friends.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/friends.ico -------------------------------------------------------------------------------- /GCQL/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/game.ico -------------------------------------------------------------------------------- /GCQL/res/game1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/game1.ico -------------------------------------------------------------------------------- /GCQL/res/game2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/game2.ico -------------------------------------------------------------------------------- /GCQL/res/gamebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/gamebar.bmp -------------------------------------------------------------------------------- /GCQL/res/gamebar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/gamebar1.bmp -------------------------------------------------------------------------------- /GCQL/res/gamebar256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/gamebar256.bmp -------------------------------------------------------------------------------- /GCQL/res/games.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/games.ico -------------------------------------------------------------------------------- /GCQL/res/games1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/games1.ico -------------------------------------------------------------------------------- /GCQL/res/html1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/html1.htm -------------------------------------------------------------------------------- /GCQL/res/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ico00001.ico -------------------------------------------------------------------------------- /GCQL/res/ico00002.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ico00002.ico -------------------------------------------------------------------------------- /GCQL/res/ico00003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ico00003.ico -------------------------------------------------------------------------------- /GCQL/res/ico00004.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ico00004.ico -------------------------------------------------------------------------------- /GCQL/res/ico00005.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ico00005.ico -------------------------------------------------------------------------------- /GCQL/res/ico00006.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ico00006.ico -------------------------------------------------------------------------------- /GCQL/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/icon1.ico -------------------------------------------------------------------------------- /GCQL/res/ingame.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/ingame.ico -------------------------------------------------------------------------------- /GCQL/res/message.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/message.ico -------------------------------------------------------------------------------- /GCQL/res/message01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/message01.wav -------------------------------------------------------------------------------- /GCQL/res/online1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/online1.bmp -------------------------------------------------------------------------------- /GCQL/res/right.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/right.ico -------------------------------------------------------------------------------- /GCQL/res/room.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/room.ico -------------------------------------------------------------------------------- /GCQL/res/rooms.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/rooms.ico -------------------------------------------------------------------------------- /GCQL/res/rt_manif.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/rt_manif.bin -------------------------------------------------------------------------------- /GCQL/res/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/toolbar1.bmp -------------------------------------------------------------------------------- /GCQL/res/up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/res/up.ico -------------------------------------------------------------------------------- /GCQL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQL/resource.h -------------------------------------------------------------------------------- /GCQPPC/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQPPC/AssemblyInfo.cs -------------------------------------------------------------------------------- /GCQPPC/ChatForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQPPC/ChatForm.cs -------------------------------------------------------------------------------- /GCQPPC/ChatForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQPPC/ChatForm.resx -------------------------------------------------------------------------------- /GCQPPC/GCQPPC.csdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQPPC/GCQPPC.csdproj -------------------------------------------------------------------------------- /GCQPPC/GCQPPC.csdproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GCQPPC/GCQPPC.csdproj.user -------------------------------------------------------------------------------- /GameCQ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GameCQ.sln -------------------------------------------------------------------------------- /GameCQInstall.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/GameCQInstall.nsi -------------------------------------------------------------------------------- /Gcqs/GCQDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/GCQDll.h -------------------------------------------------------------------------------- /Gcqs/GCQS.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/GCQS.vcproj -------------------------------------------------------------------------------- /Gcqs/GCQS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/GCQS.vcxproj -------------------------------------------------------------------------------- /Gcqs/GCQS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/GCQS.vcxproj.filters -------------------------------------------------------------------------------- /Gcqs/MasterServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/MasterServer.cpp -------------------------------------------------------------------------------- /Gcqs/MasterServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/MasterServer.h -------------------------------------------------------------------------------- /Gcqs/MetaServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/MetaServer.cpp -------------------------------------------------------------------------------- /Gcqs/MetaServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/MetaServer.h -------------------------------------------------------------------------------- /Gcqs/MetaServerCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/MetaServerCommands.cpp -------------------------------------------------------------------------------- /Gcqs/ProcessServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/ProcessServer.cpp -------------------------------------------------------------------------------- /Gcqs/ProcessServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/ProcessServer.h -------------------------------------------------------------------------------- /Gcqs/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/WinGDB.xml -------------------------------------------------------------------------------- /Gcqs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Gcqs/makefile -------------------------------------------------------------------------------- /HelpBot/Bot/AimlBot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/AimlBot.dll -------------------------------------------------------------------------------- /HelpBot/Bot/bf_activate.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_activate.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_anygood.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_anygood.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_beta.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_beta.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_bomb.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_bomb.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_cost.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_cost.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_coupon.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_coupon.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_ead.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_ead.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_emotes.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_emotes.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_engineer.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_engineer.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_fontcolor.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_fontcolor.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_howplay.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_howplay.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_joinfleet.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_joinfleet.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_joining_beta.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_joining_beta.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_josef.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_josef.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_jumpgate.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_jumpgate.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_manual.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_manual.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_metaverse.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_metaverse.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_missions.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_missions.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_mod.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_mod.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_namechange.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_namechange.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_payment.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_payment.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_prestige.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_prestige.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_ranks.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_ranks.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_rules_of_conduct.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_rules_of_conduct.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_screenshot.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_screenshot.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_shipyard.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_shipyard.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_template.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_template.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_usecoupon.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_usecoupon.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_validate.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_validate.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bf_wormhole.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bf_wormhole.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/bot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/bot.ini -------------------------------------------------------------------------------- /HelpBot/Bot/c.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/c.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/data1.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/data1.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/emotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/emotes.txt -------------------------------------------------------------------------------- /HelpBot/Bot/errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelpBot/Bot/gamegeneric.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/gamegeneric.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/gossip.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelpBot/Bot/localuser.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HelpBot/Bot/patterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/patterns.txt -------------------------------------------------------------------------------- /HelpBot/Bot/person.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HelpBot/Bot/person2.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HelpBot/Bot/personf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/personf.txt -------------------------------------------------------------------------------- /HelpBot/Bot/skeleton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/skeleton.txt -------------------------------------------------------------------------------- /HelpBot/Bot/star.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/star.aiml -------------------------------------------------------------------------------- /HelpBot/Bot/substitute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/substitute.txt -------------------------------------------------------------------------------- /HelpBot/Bot/templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/templates.txt -------------------------------------------------------------------------------- /HelpBot/Bot/unsorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/Bot/unsorted.txt -------------------------------------------------------------------------------- /HelpBot/ChatLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/ChatLog.cpp -------------------------------------------------------------------------------- /HelpBot/ChatLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/ChatLog.h -------------------------------------------------------------------------------- /HelpBot/EmoteResponder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/EmoteResponder.cpp -------------------------------------------------------------------------------- /HelpBot/EmoteResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/EmoteResponder.h -------------------------------------------------------------------------------- /HelpBot/HelpBot.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.clw -------------------------------------------------------------------------------- /HelpBot/HelpBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.cpp -------------------------------------------------------------------------------- /HelpBot/HelpBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.h -------------------------------------------------------------------------------- /HelpBot/HelpBot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.ini -------------------------------------------------------------------------------- /HelpBot/HelpBot.log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.log.html -------------------------------------------------------------------------------- /HelpBot/HelpBot.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.vcproj -------------------------------------------------------------------------------- /HelpBot/HelpBot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.vcxproj -------------------------------------------------------------------------------- /HelpBot/HelpBot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/HelpBot.vcxproj.filters -------------------------------------------------------------------------------- /HelpBot/MessageLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/MessageLoop.cpp -------------------------------------------------------------------------------- /HelpBot/MessageLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/MessageLoop.h -------------------------------------------------------------------------------- /HelpBot/ResponseControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/ResponseControl.cpp -------------------------------------------------------------------------------- /HelpBot/ResponseControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/ResponseControl.h -------------------------------------------------------------------------------- /HelpBot/SmartSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/SmartSend.cpp -------------------------------------------------------------------------------- /HelpBot/SmartSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/SmartSend.h -------------------------------------------------------------------------------- /HelpBot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/HelpBot/main.cpp -------------------------------------------------------------------------------- /LogServer/LogServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/LogServer/LogServer.cpp -------------------------------------------------------------------------------- /LogServer/LogServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/LogServer/LogServer.vcproj -------------------------------------------------------------------------------- /LogServer/LogServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/LogServer/LogServer.vcxproj -------------------------------------------------------------------------------- /LogServer/LogServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/LogServer/LogServer.vcxproj.filters -------------------------------------------------------------------------------- /LogServer/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/LogServer/WinGDB.xml -------------------------------------------------------------------------------- /LogServer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/LogServer/makefile -------------------------------------------------------------------------------- /MetaServer/MetaServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MetaServer/MetaServer.cpp -------------------------------------------------------------------------------- /MetaServer/MetaServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MetaServer/MetaServer.vcproj -------------------------------------------------------------------------------- /MetaServer/MetaServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MetaServer/MetaServer.vcxproj -------------------------------------------------------------------------------- /MetaServer/MetaServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MetaServer/MetaServer.vcxproj.filters -------------------------------------------------------------------------------- /MetaServer/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MetaServer/WinGDB.xml -------------------------------------------------------------------------------- /MetaServer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MetaServer/makefile -------------------------------------------------------------------------------- /MirrorClient/MirrorClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/MirrorClient.cpp -------------------------------------------------------------------------------- /MirrorClient/MirrorClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/MirrorClient.vcproj -------------------------------------------------------------------------------- /MirrorClient/MirrorClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/MirrorClient.vcxproj -------------------------------------------------------------------------------- /MirrorClient/MirrorClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/MirrorClient.vcxproj.filters -------------------------------------------------------------------------------- /MirrorClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/ReadMe.txt -------------------------------------------------------------------------------- /MirrorClient/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/StdAfx.cpp -------------------------------------------------------------------------------- /MirrorClient/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorClient/StdAfx.h -------------------------------------------------------------------------------- /MirrorServer/MirrorServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/MirrorServer.cpp -------------------------------------------------------------------------------- /MirrorServer/MirrorServer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/MirrorServer.ini -------------------------------------------------------------------------------- /MirrorServer/MirrorServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/MirrorServer.vcproj -------------------------------------------------------------------------------- /MirrorServer/MirrorServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/MirrorServer.vcxproj -------------------------------------------------------------------------------- /MirrorServer/MirrorServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/MirrorServer.vcxproj.filters -------------------------------------------------------------------------------- /MirrorServer/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/WinGDB.xml -------------------------------------------------------------------------------- /MirrorServer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorServer/makefile -------------------------------------------------------------------------------- /MirrorUpdate/MirrorUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpdate/MirrorUpdate.cpp -------------------------------------------------------------------------------- /MirrorUpdate/MirrorUpdate.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpdate/MirrorUpdate.vcproj -------------------------------------------------------------------------------- /MirrorUpdate/MirrorUpdate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpdate/MirrorUpdate.vcxproj -------------------------------------------------------------------------------- /MirrorUpdate/MirrorUpdate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpdate/MirrorUpdate.vcxproj.filters -------------------------------------------------------------------------------- /MirrorUpload/EditProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/EditProfile.cpp -------------------------------------------------------------------------------- /MirrorUpload/EditProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/EditProfile.h -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.clw -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.cpp -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.h -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.rc -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.vcproj -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.vcxproj -------------------------------------------------------------------------------- /MirrorUpload/MirrorUpload.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUpload.vcxproj.filters -------------------------------------------------------------------------------- /MirrorUpload/MirrorUploadDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUploadDlg.cpp -------------------------------------------------------------------------------- /MirrorUpload/MirrorUploadDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/MirrorUploadDlg.h -------------------------------------------------------------------------------- /MirrorUpload/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/ReadMe.txt -------------------------------------------------------------------------------- /MirrorUpload/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/StdAfx.cpp -------------------------------------------------------------------------------- /MirrorUpload/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/StdAfx.h -------------------------------------------------------------------------------- /MirrorUpload/UploadThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/UploadThread.h -------------------------------------------------------------------------------- /MirrorUpload/res/MirrorUpload.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/res/MirrorUpload.ico -------------------------------------------------------------------------------- /MirrorUpload/res/MirrorUpload.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/res/MirrorUpload.rc2 -------------------------------------------------------------------------------- /MirrorUpload/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/MirrorUpload/resource.h -------------------------------------------------------------------------------- /ProcessClient/EditDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/EditDialog.cpp -------------------------------------------------------------------------------- /ProcessClient/EditDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/EditDialog.h -------------------------------------------------------------------------------- /ProcessClient/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/Process.cpp -------------------------------------------------------------------------------- /ProcessClient/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/Process.h -------------------------------------------------------------------------------- /ProcessClient/ProcessClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessClient.cpp -------------------------------------------------------------------------------- /ProcessClient/ProcessClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessClient.h -------------------------------------------------------------------------------- /ProcessClient/ProcessClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessClient.rc -------------------------------------------------------------------------------- /ProcessClient/ProcessClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessClient.vcproj -------------------------------------------------------------------------------- /ProcessClient/ProcessClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessClient.vcxproj -------------------------------------------------------------------------------- /ProcessClient/ProcessClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessClient.vcxproj.filters -------------------------------------------------------------------------------- /ProcessClient/ProcessLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessLog.cpp -------------------------------------------------------------------------------- /ProcessClient/ProcessLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessLog.h -------------------------------------------------------------------------------- /ProcessClient/ProcessSearchLogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessSearchLogs.cpp -------------------------------------------------------------------------------- /ProcessClient/ProcessSearchLogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessSearchLogs.h -------------------------------------------------------------------------------- /ProcessClient/ProcessServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessServer.cpp -------------------------------------------------------------------------------- /ProcessClient/ProcessServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ProcessServer.h -------------------------------------------------------------------------------- /ProcessClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/ReadMe.txt -------------------------------------------------------------------------------- /ProcessClient/res/ProcessClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/res/ProcessClient.ico -------------------------------------------------------------------------------- /ProcessClient/res/ProcessClient.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/res/ProcessClient.manifest -------------------------------------------------------------------------------- /ProcessClient/res/ProcessClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/res/ProcessClient.rc2 -------------------------------------------------------------------------------- /ProcessClient/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/resource.h -------------------------------------------------------------------------------- /ProcessClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/stdafx.cpp -------------------------------------------------------------------------------- /ProcessClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClient/stdafx.h -------------------------------------------------------------------------------- /ProcessClientCLI/ProcessClientCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClientCLI/ProcessClientCLI.cpp -------------------------------------------------------------------------------- /ProcessClientCLI/ProcessClientCLI.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClientCLI/ProcessClientCLI.vcproj -------------------------------------------------------------------------------- /ProcessClientCLI/ProcessClientCLI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClientCLI/ProcessClientCLI.vcxproj -------------------------------------------------------------------------------- /ProcessClientCLI/ProcessClientCLI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClientCLI/ProcessClientCLI.vcxproj.filters -------------------------------------------------------------------------------- /ProcessClientCLI/TestCLI.ini: -------------------------------------------------------------------------------- 1 | [ProcessClientCLI] 2 | address=vm1.palestar.com 3 | port=9005 4 | user=Server 5 | password=spot7471 6 | -------------------------------------------------------------------------------- /ProcessClientCLI/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClientCLI/WinGDB.xml -------------------------------------------------------------------------------- /ProcessClientCLI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessClientCLI/makefile -------------------------------------------------------------------------------- /ProcessServer/PDH.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/PDH.LIB -------------------------------------------------------------------------------- /ProcessServer/ProcessServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/ProcessServer.cpp -------------------------------------------------------------------------------- /ProcessServer/ProcessServer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/ProcessServer.ini -------------------------------------------------------------------------------- /ProcessServer/ProcessServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/ProcessServer.vcproj -------------------------------------------------------------------------------- /ProcessServer/ProcessServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/ProcessServer.vcxproj -------------------------------------------------------------------------------- /ProcessServer/ProcessServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/ProcessServer.vcxproj.filters -------------------------------------------------------------------------------- /ProcessServer/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/WinGDB.xml -------------------------------------------------------------------------------- /ProcessServer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/makefile -------------------------------------------------------------------------------- /ProcessServer/pdh.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/pdh.dll -------------------------------------------------------------------------------- /ProcessServer/perfmon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/perfmon.cpp -------------------------------------------------------------------------------- /ProcessServer/perfmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/perfmon.h -------------------------------------------------------------------------------- /ProcessServer/perfmon_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ProcessServer/perfmon_src.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/README.md -------------------------------------------------------------------------------- /RotateLogs/RotateLogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/RotateLogs/RotateLogs.cpp -------------------------------------------------------------------------------- /RotateLogs/RotateLogs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/RotateLogs/RotateLogs.vcproj -------------------------------------------------------------------------------- /RotateLogs/RotateLogs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/RotateLogs/RotateLogs.vcxproj -------------------------------------------------------------------------------- /RotateLogs/RotateLogs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/RotateLogs/RotateLogs.vcxproj.filters -------------------------------------------------------------------------------- /RotateLogs/WinGDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/RotateLogs/WinGDB.xml -------------------------------------------------------------------------------- /RotateLogs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/RotateLogs/makefile -------------------------------------------------------------------------------- /Scripts/BackupCron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Scripts/BackupCron.sh -------------------------------------------------------------------------------- /Scripts/CoreCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Scripts/CoreCommands -------------------------------------------------------------------------------- /Scripts/CoreWatchCron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Scripts/CoreWatchCron.sh -------------------------------------------------------------------------------- /Scripts/ProcessServerCron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Scripts/ProcessServerCron.sh -------------------------------------------------------------------------------- /Servers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Servers.sln -------------------------------------------------------------------------------- /Service/MSG00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/MSG00000.bin -------------------------------------------------------------------------------- /Service/NTService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/NTService.cpp -------------------------------------------------------------------------------- /Service/NTService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/NTService.h -------------------------------------------------------------------------------- /Service/NTServiceEventLogMsg.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/NTServiceEventLogMsg.clw -------------------------------------------------------------------------------- /Service/NTServiceEventLogMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/NTServiceEventLogMsg.h -------------------------------------------------------------------------------- /Service/NTServiceEventLogMsg.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/NTServiceEventLogMsg.mc -------------------------------------------------------------------------------- /Service/NTServiceEventLogMsg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/NTServiceEventLogMsg.rc -------------------------------------------------------------------------------- /Service/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/Readme.txt -------------------------------------------------------------------------------- /Service/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/Service.cpp -------------------------------------------------------------------------------- /Service/Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/Service.h -------------------------------------------------------------------------------- /Service/Service.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/Service.vcproj -------------------------------------------------------------------------------- /Service/Service.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/Service.vcxproj -------------------------------------------------------------------------------- /Service/Service.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/Service.vcxproj.filters -------------------------------------------------------------------------------- /Service/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/main.cpp -------------------------------------------------------------------------------- /Service/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Service/resource.h -------------------------------------------------------------------------------- /SmartUpdate/PSAPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/PSAPI.H -------------------------------------------------------------------------------- /SmartUpdate/ProgDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/ProgDlg.cpp -------------------------------------------------------------------------------- /SmartUpdate/ProgDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/ProgDlg.h -------------------------------------------------------------------------------- /SmartUpdate/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/ReadMe.txt -------------------------------------------------------------------------------- /SmartUpdate/SimpleProcessAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SimpleProcessAPI.cpp -------------------------------------------------------------------------------- /SmartUpdate/SimpleProcessAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SimpleProcessAPI.h -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.clw -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.cpp -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.h -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.rc -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.vcproj -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.vcxproj -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdate.vcxproj.filters -------------------------------------------------------------------------------- /SmartUpdate/SmartUpdateVS2003.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/SmartUpdateVS2003.vcproj -------------------------------------------------------------------------------- /SmartUpdate/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/StdAfx.cpp -------------------------------------------------------------------------------- /SmartUpdate/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/StdAfx.h -------------------------------------------------------------------------------- /SmartUpdate/WhoSLocking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/WhoSLocking.zip -------------------------------------------------------------------------------- /SmartUpdate/res/SmartUpdate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/res/SmartUpdate.ico -------------------------------------------------------------------------------- /SmartUpdate/res/SmartUpdate.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/res/SmartUpdate.rc2 -------------------------------------------------------------------------------- /SmartUpdate/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/SmartUpdate/resource.h -------------------------------------------------------------------------------- /StopServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/ReadMe.txt -------------------------------------------------------------------------------- /StopServer/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/StdAfx.cpp -------------------------------------------------------------------------------- /StopServer/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/StdAfx.h -------------------------------------------------------------------------------- /StopServer/StopServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/StopServer.cpp -------------------------------------------------------------------------------- /StopServer/StopServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/StopServer.vcproj -------------------------------------------------------------------------------- /StopServer/StopServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/StopServer.vcxproj -------------------------------------------------------------------------------- /StopServer/StopServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/StopServer/StopServer.vcxproj.filters -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGAccessibility.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGAnimCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGAnimCtrl.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGAnimCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGAnimCtrl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGAppBarWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGAppBarWnd.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGAppBarWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGAppBarWnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGButton.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGCB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGCB.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGCaptionBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGCaptionBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGCaptionBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGCaptionBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorButton.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorDialog.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorDialog.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorMenuButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorMenuButton.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGColorMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGColorMenuButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGCommandManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGCommandManager.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGCommandManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGCommandManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.def -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.dsp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.dsw -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.rc -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.sln -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar.vcproj -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar71.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar71.sln -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar71.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar71.vcproj -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar80.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar80.sln -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBar80.vcproj -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBarImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBarImpl.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGControlBarImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGControlBarImpl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDialog.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDialog.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDialogBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDialogBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDialogBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDialogBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDlgImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDlgImpl.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDlgImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDlgImpl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDockBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDockBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDockContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDockContext.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDockContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDockContext.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDrawManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDrawManager.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDrawManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDrawManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDropDown.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGDropDown.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGEditListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGEditListBox.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGEditListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGEditListBox.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGExCheckList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGExCheckList.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGExCheckList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGExCheckList.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFileDialog.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFileDialog.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFontComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFontComboBox.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFontComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFontComboBox.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFrameImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFrameImpl.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFrameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFrameImpl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFrameImplEval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFrameImplEval.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFrameWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFrameWnd.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGFrameWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGFrameWnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGHeaderCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGHeaderCtrl.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGHeaderCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGHeaderCtrl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGInit.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGKeyMapDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGKeyMapDlg.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGKeyMapDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGKeyMapDlg.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGKeyboardManager.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGListCtrl.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGListCtrl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGLocalRes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGLocalRes.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMDIChildWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMDIChildWnd.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMDIChildWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMDIChildWnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMDIFrameWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMDIFrameWnd.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMDIFrameWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMDIFrameWnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMaskEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMaskEdit.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMaskEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMaskEdit.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMenuBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMenuBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMenuButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMenuButton.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMenuButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMouseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMouseManager.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGMouseManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGOleIPFrameWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGOleIPFrameWnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGOutlookButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGOutlookButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupDlg.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupDlg.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenu.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenu.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenuBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupMenuBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupWindow.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPopupWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPopupWindow.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPropList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPropList.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPropList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPropList.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPropertyPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPropertyPage.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPropertyPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPropertyPage.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGPropertySheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGPropertySheet.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGRegistry.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGRegistry.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSelectSkinDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSelectSkinDlg.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellList.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellList.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellManager.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellPIDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellPIDL.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellPIDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellPIDL.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellTree.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShellTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShellTree.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGShowAllButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGShowAllButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSkinEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSkinEntry.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSkinManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSkinManager.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSkinManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSkinManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSpinButtonCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSpinButtonCtrl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSplitterWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSplitterWnd.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGSplitterWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGSplitterWnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGStatusBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGStatusBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGTabView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGTabView.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGTabView.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGTasksPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGTasksPane.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGTasksPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGTasksPane.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGTearOffManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGTearOffManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGToolBar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGToolBar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGToolBarImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGToolBarImages.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGToolbarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGToolbarButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGToolsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGToolsPage.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGToolsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGToolsPage.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGURLLinkButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGURLLinkButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGUserTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGUserTool.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGUserTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGUserTool.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGVisualManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGVisualManager.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGWorkspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGWorkspace.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/BCGWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/BCGWorkspace.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ButtonsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ButtonsList.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ButtonsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ButtonsList.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ButtonsTextList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ButtonsTextList.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ButtonsTextList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ButtonsTextList.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/CmdUsageCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/CmdUsageCount.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/CmdUsageCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/CmdUsageCount.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ColorPage1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ColorPage1.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ColorPage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ColorPage1.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ColorPage2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ColorPage2.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ColorPage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ColorPage2.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ColorPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ColorPopup.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ColorPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ColorPopup.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/CustomizeButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/CustomizeButton.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/CustomizeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/CustomizeButton.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/GLOBALS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/GLOBALS.CPP -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/GLOBALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/GLOBALS.H -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ImageEditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ImageEditDlg.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ImageEditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ImageEditDlg.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ImageHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ImageHash.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ImageHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ImageHash.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ImagePaintArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ImagePaintArea.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ImagePaintArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ImagePaintArea.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/KeyAssign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/KeyAssign.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/KeyAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/KeyAssign.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/KeyHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/KeyHelper.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/KeyHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/KeyHelper.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/KeyboardPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/KeyboardPage.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/KeyboardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/KeyboardPage.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MenuHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MenuHash.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MenuHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MenuHash.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MenuImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MenuImages.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MenuImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MenuImages.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MenuPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MenuPage.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MenuPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MenuPage.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MousePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MousePage.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/MousePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/MousePage.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/OptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/OptionsPage.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/OptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/OptionsPage.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/PropertySheetCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/PropertySheetCtrl.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ReadMe.txt -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/RebarState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/RebarState.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/RebarState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/RebarState.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/RegPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/RegPath.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/RegPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/RegPath.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/StdAfx.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/StdAfx.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/TargetSxS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/TargetSxS.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ToolbarNameDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ToolbarNameDlg.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/ToolbarNameDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/ToolbarNameDlg.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/TrackMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/TrackMouse.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/TrackMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/TrackMouse.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgbarres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgbarres.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgcbver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgcbver.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcghelpids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcghelpids.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcginit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcginit.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcglocalres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcglocalres.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgoutlookbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgoutlookbar.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgoutlookbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgoutlookbar.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgsound.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgsound.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgtabwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgtabwnd.cpp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/bcgtabwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/bcgtabwnd.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/powercolorpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/powercolorpicker.h -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/arrows.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/arrows.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/color.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/color.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/copy.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/copy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/copy.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/copy32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/copy32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/delete.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/delete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/delete.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/delete32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/delete32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/down.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/down32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/down32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/ellipse.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/ellipse.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/fill.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/fill.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/font.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/hand.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/help-pro32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/help-pro32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/help.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/help.ico -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/line.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/line.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/logo24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/logo24.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/mail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/mail.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/menuimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/menuimg.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/move.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/new.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/new.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/new32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/new32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/palette.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/palette.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/palette32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/palette32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/pen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/pen.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/picker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/picker.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/print.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/print.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/print32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/print32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/rect.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/rect.cur -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/taskpane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/taskpane.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/taskpane32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/taskpane32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/tool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/tool.ico -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/up.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/up32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/up32.bmp -------------------------------------------------------------------------------- /ThirdParty/BCGControlBar/BCGControlBar/res/url.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/BCGControlBar/BCGControlBar/res/url.bmp -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/COPYING -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/EXCEPTIONS-CLIENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/EXCEPTIONS-CLIENT -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/README -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/atomic/gcc_builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/atomic/gcc_builtins.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/atomic/generic-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/atomic/generic-msvc.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/atomic/nolock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/atomic/nolock.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/atomic/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/atomic/rwlock.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/atomic/x86-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/atomic/x86-gcc.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/base64.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/config-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/config-win.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/decimal.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/errmsg.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/hash.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/keycache.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/lf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/lf.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/m_ctype.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/m_string.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_aes.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_alarm.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_alloc.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_atomic.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_attribute.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_base.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_bit.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_bitmap.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_charsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_charsets.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_config.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_dbug.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_dir.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_getopt.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_global.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_libwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_libwrap.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_list.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_md5.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_net.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_no_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_no_pthread.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_nosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_nosys.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_pthread.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_stacktrace.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_sys.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_time.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_tree.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_trie.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_uctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_uctype.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_vle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_vle.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/my_xml.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/myisampack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/myisampack.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysql.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysql_com.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysql_time.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysql_version.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysqld_error.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysys/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysys/rijndael.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/mysys_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/mysys_err.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/queues.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/service_versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/service_versions.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/sha1.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/sha2.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/sql_common.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/sslopt-case.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/sslopt-longopts.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/sslopt-vars.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/t_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/t_ctype.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/thr_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/thr_alarm.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/thr_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/thr_lock.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/typelib.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/violite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/violite.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/waiting_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/waiting_threads.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/include/wqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/include/wqueue.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/lib/libmysql.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/lib/libmysql.so -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Linux/lib/libmysqlclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Linux/lib/libmysqlclient.a -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/atomic/gcc_builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/atomic/gcc_builtins.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/atomic/generic-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/atomic/generic-msvc.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/atomic/nolock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/atomic/nolock.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/atomic/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/atomic/rwlock.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/atomic/x86-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/atomic/x86-gcc.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/base64.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/config-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/config-win.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/decimal.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/errmsg.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/hash.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/keycache.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/lf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/lf.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/m_ctype.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/m_string.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_aes.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_alarm.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_alloc.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_atomic.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_attribute.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_base.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_bit.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_bitmap.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_charsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_charsets.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_config.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_dbug.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_dir.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_getopt.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_global.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_libwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_libwrap.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_list.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_md5.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_net.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_no_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_no_pthread.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_nosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_nosys.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_pthread.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_stacktrace.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_sys.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_time.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_tree.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_trie.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_uctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_uctype.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_vle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_vle.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/my_xml.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/myisampack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/myisampack.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysql.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysql_com.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysql_time.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysql_version.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysqld_error.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysys/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysys/rijndael.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/mysys_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/mysys_err.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/queues.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/service_versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/service_versions.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/sha1.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/sha2.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/sql_common.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/sslopt-case.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/sslopt-longopts.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/sslopt-vars.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/t_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/t_ctype.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/thr_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/thr_alarm.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/thr_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/thr_lock.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/typelib.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/violite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/violite.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/waiting_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/waiting_threads.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/include/wqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/include/wqueue.h -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/lib/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/lib/libmysql.dll -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/lib/libmysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/lib/libmysql.lib -------------------------------------------------------------------------------- /ThirdParty/mysql/x86-Win32/lib/mysqlclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/mysql/x86-Win32/lib/mysqlclient.lib -------------------------------------------------------------------------------- /ThirdParty/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/Makefile -------------------------------------------------------------------------------- /ThirdParty/tinyxml/TargetSxS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/TargetSxS.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinystr.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxml.sln -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxml.vcproj -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxml.vcxproj -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxml.vcxproj.filters -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/ThirdParty/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/Web.sln -------------------------------------------------------------------------------- /YAM/ChatEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ChatEdit.cpp -------------------------------------------------------------------------------- /YAM/ChatEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ChatEdit.h -------------------------------------------------------------------------------- /YAM/ChatView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ChatView.cpp -------------------------------------------------------------------------------- /YAM/ChatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ChatView.h -------------------------------------------------------------------------------- /YAM/ChatWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ChatWindow.cpp -------------------------------------------------------------------------------- /YAM/ChatWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ChatWindow.h -------------------------------------------------------------------------------- /YAM/FilterText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/FilterText.cpp -------------------------------------------------------------------------------- /YAM/FilterText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/FilterText.h -------------------------------------------------------------------------------- /YAM/FriendList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/FriendList.cpp -------------------------------------------------------------------------------- /YAM/FriendList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/FriendList.h -------------------------------------------------------------------------------- /YAM/PWCipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/PWCipher.cpp -------------------------------------------------------------------------------- /YAM/PWCipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/PWCipher.h -------------------------------------------------------------------------------- /YAM/ResizingDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ResizingDialog.cpp -------------------------------------------------------------------------------- /YAM/ResizingDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/ResizingDialog.h -------------------------------------------------------------------------------- /YAM/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/StdAfx.cpp -------------------------------------------------------------------------------- /YAM/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/StdAfx.h -------------------------------------------------------------------------------- /YAM/SystemTray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/SystemTray.cpp -------------------------------------------------------------------------------- /YAM/SystemTray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/SystemTray.h -------------------------------------------------------------------------------- /YAM/Tfxdatatip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/Tfxdatatip.cpp -------------------------------------------------------------------------------- /YAM/Tfxdatatip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/Tfxdatatip.h -------------------------------------------------------------------------------- /YAM/Yam.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/Yam.rc -------------------------------------------------------------------------------- /YAM/res/Avatar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/Avatar.ico -------------------------------------------------------------------------------- /YAM/res/activity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/activity.ico -------------------------------------------------------------------------------- /YAM/res/avatar_a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/avatar_a.ico -------------------------------------------------------------------------------- /YAM/res/avatar_m.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/avatar_m.ico -------------------------------------------------------------------------------- /YAM/res/empty_ht.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/empty_ht.htm -------------------------------------------------------------------------------- /YAM/res/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/ico00001.ico -------------------------------------------------------------------------------- /YAM/res/ico00004.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/ico00004.ico -------------------------------------------------------------------------------- /YAM/res/ico00005.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/ico00005.ico -------------------------------------------------------------------------------- /YAM/res/yam.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/yam.ico -------------------------------------------------------------------------------- /YAM/res/yam.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/yam.rc2 -------------------------------------------------------------------------------- /YAM/res/yamOld.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/res/yamOld.ico -------------------------------------------------------------------------------- /YAM/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/resource.h -------------------------------------------------------------------------------- /YAM/yam.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/yam.clw -------------------------------------------------------------------------------- /YAM/yam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/yam.cpp -------------------------------------------------------------------------------- /YAM/yam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/yam.h -------------------------------------------------------------------------------- /YAM/yamDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/yamDlg.cpp -------------------------------------------------------------------------------- /YAM/yamDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/YAM/yamDlg.h -------------------------------------------------------------------------------- /gamecq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/gamecq.sql -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palestar/gamecq/HEAD/license.txt --------------------------------------------------------------------------------