latest changes from main rep

This commit is contained in:
Guenter Obiltschnig
2007-05-05 13:15:55 +00:00
parent ed4789b844
commit be44df77fd
49 changed files with 214 additions and 100 deletions

View File

@@ -1,7 +1,7 @@
//
// Event_WIN32.cpp
//
// $Id: //poco/Main/Foundation/src/Event_WIN32.cpp#12 $
// $Id: //poco/Main/Foundation/src/Event_WIN32.cpp#13 $
//
// Library: Foundation
// Package: Threading
@@ -42,7 +42,7 @@ namespace Poco {
EventImpl::EventImpl(bool autoReset)
{
_event = CreateEvent(NULL, autoReset ? FALSE : TRUE, FALSE, NULL);
_event = CreateEventW(NULL, autoReset ? FALSE : TRUE, FALSE, NULL);
if (!_event)
throw SystemException("cannot create event");
}