Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a requirement to modify a simple windows service written in win32 C (not c++).

Is there a library I can use to write event log entries to the windows event log without using eventcreate.exe? Or do I have to modify it to be compiled as a c++ program?

share|improve this question
For doing this programmatically, you might want to start from here. – Jon Jul 4 '11 at 13:13

1 Answer

up vote 9 down vote accepted

Yes, see the function ReportEvent and its example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.