├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── images └── preview.png ├── main.lfm ├── main.pas ├── seventlog.ico ├── seventlog.lpi ├── seventlog.lpr ├── seventlog.lps ├── seventlog.res └── syeventlogreader.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/_config.yml -------------------------------------------------------------------------------- /images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/images/preview.png -------------------------------------------------------------------------------- /main.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/main.lfm -------------------------------------------------------------------------------- /main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/main.pas -------------------------------------------------------------------------------- /seventlog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/seventlog.ico -------------------------------------------------------------------------------- /seventlog.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/seventlog.lpi -------------------------------------------------------------------------------- /seventlog.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/seventlog.lpr -------------------------------------------------------------------------------- /seventlog.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/seventlog.lps -------------------------------------------------------------------------------- /seventlog.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/seventlog.res -------------------------------------------------------------------------------- /syeventlogreader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seryal/EventLogViewer/HEAD/syeventlogreader.pas --------------------------------------------------------------------------------