home *** CD-ROM | disk | FTP | other *** search
- #include "test.h"
- #pragma hdrstop
-
- void test_CEventLog( void )
- {
- CEventLog log( "Dodah" );
-
- LPCTSTR string_array[ 1 ];
-
- string_array[ 0 ] = "Hello World";
-
- log.Report( CEventLog::eventInformation, 0, 0, 1, string_array );
- log.ReportInformation( "ReportInformation" );
- log.ReportError( "ReportError" );
- }
-