├── .gitignore ├── ActiveKOL.pas ├── DGlut.pas ├── KOLCCtrls.pas ├── KOLComObj.pas ├── KOLDEF.INC ├── KOLENET ├── .gitignore ├── LICENSE ├── callbacks_c.inc ├── enet │ ├── callbacks_h.inc │ ├── enet_h.inc │ ├── list_h.inc │ ├── protocol_h.inc │ ├── time_h.inc │ ├── types_h.inc │ ├── unix_h.inc │ ├── utility_h.inc │ └── win32_h.inc ├── host_c.inc ├── list_c.inc ├── packet_c.inc ├── peer_c.inc ├── unix_c.inc └── win32_c.inc ├── KOLMHTooltip_implem.inc ├── KOLMHTooltip_interface.inc ├── KOLMHTooltip_intf2.inc ├── KOLOleRE.pas ├── KOLPageSetupDialog.pas ├── KOLPrintDialogs.pas ├── KOLPrinters.pas ├── KOLSHDocVw.pas ├── KOL_ASM.inc ├── KOL_ASM_NOUNICODE.inc ├── KOL_ansi.inc ├── KOL_unicode.inc ├── LICENSE ├── MCKfakeClasses.inc ├── MCKfakeClasses200x.inc ├── Messages.pas ├── MsgDecode.pas ├── README.md ├── delphicommctrl.inc ├── delphidef.inc ├── err.pas ├── kol.pas ├── kolmath.pas ├── richedit.pas └── visual_xp_styles.inc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/.gitignore -------------------------------------------------------------------------------- /ActiveKOL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/ActiveKOL.pas -------------------------------------------------------------------------------- /DGlut.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/DGlut.pas -------------------------------------------------------------------------------- /KOLCCtrls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLCCtrls.pas -------------------------------------------------------------------------------- /KOLComObj.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLComObj.pas -------------------------------------------------------------------------------- /KOLDEF.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLDEF.INC -------------------------------------------------------------------------------- /KOLENET/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/.gitignore -------------------------------------------------------------------------------- /KOLENET/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/LICENSE -------------------------------------------------------------------------------- /KOLENET/callbacks_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/callbacks_c.inc -------------------------------------------------------------------------------- /KOLENET/enet/callbacks_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/callbacks_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/enet_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/enet_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/list_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/list_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/protocol_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/protocol_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/time_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/time_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/types_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/types_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/unix_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/unix_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/utility_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/utility_h.inc -------------------------------------------------------------------------------- /KOLENET/enet/win32_h.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/enet/win32_h.inc -------------------------------------------------------------------------------- /KOLENET/host_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/host_c.inc -------------------------------------------------------------------------------- /KOLENET/list_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/list_c.inc -------------------------------------------------------------------------------- /KOLENET/packet_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/packet_c.inc -------------------------------------------------------------------------------- /KOLENET/peer_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/peer_c.inc -------------------------------------------------------------------------------- /KOLENET/unix_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/unix_c.inc -------------------------------------------------------------------------------- /KOLENET/win32_c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLENET/win32_c.inc -------------------------------------------------------------------------------- /KOLMHTooltip_implem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLMHTooltip_implem.inc -------------------------------------------------------------------------------- /KOLMHTooltip_interface.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLMHTooltip_interface.inc -------------------------------------------------------------------------------- /KOLMHTooltip_intf2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLMHTooltip_intf2.inc -------------------------------------------------------------------------------- /KOLOleRE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLOleRE.pas -------------------------------------------------------------------------------- /KOLPageSetupDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLPageSetupDialog.pas -------------------------------------------------------------------------------- /KOLPrintDialogs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLPrintDialogs.pas -------------------------------------------------------------------------------- /KOLPrinters.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLPrinters.pas -------------------------------------------------------------------------------- /KOLSHDocVw.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOLSHDocVw.pas -------------------------------------------------------------------------------- /KOL_ASM.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOL_ASM.inc -------------------------------------------------------------------------------- /KOL_ASM_NOUNICODE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOL_ASM_NOUNICODE.inc -------------------------------------------------------------------------------- /KOL_ansi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOL_ansi.inc -------------------------------------------------------------------------------- /KOL_unicode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/KOL_unicode.inc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/LICENSE -------------------------------------------------------------------------------- /MCKfakeClasses.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/MCKfakeClasses.inc -------------------------------------------------------------------------------- /MCKfakeClasses200x.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/MCKfakeClasses200x.inc -------------------------------------------------------------------------------- /Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/Messages.pas -------------------------------------------------------------------------------- /MsgDecode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/MsgDecode.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/README.md -------------------------------------------------------------------------------- /delphicommctrl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/delphicommctrl.inc -------------------------------------------------------------------------------- /delphidef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/delphidef.inc -------------------------------------------------------------------------------- /err.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/err.pas -------------------------------------------------------------------------------- /kol.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/kol.pas -------------------------------------------------------------------------------- /kolmath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/kolmath.pas -------------------------------------------------------------------------------- /richedit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/richedit.pas -------------------------------------------------------------------------------- /visual_xp_styles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hallif/KOL/HEAD/visual_xp_styles.inc --------------------------------------------------------------------------------