C/C++
logchip.txt
Associated article: Viewing & Organizing Log Files
Tags: .NET C/C++ Tools
Published source code accompanying the article by Phil Grenetz in which he presents LogChipper, a tool that lets you view and organize the contents of log files.
Viewing & Organizing Log Files
by Phil Grenetz
Listing One
/********************************************************
This file is part of the LogChipper(tm) software product.
Copyright (C) 2004 Ivden Technologies, Inc. All rights reserved.
********************************************************/
public interface ILogViewParser
{
void Initialize(string sFileName, Mutex sortParseMutex);
void SetListViewColumnInfo(ref ...


