contrib(UWP): remove reference to PulseEvent in pjproject

- PulseEvent(win32) is not UWP compliant

Change-Id: Ibe545b6f8b2bb31188be7ded9b54623842c73c4e
This commit is contained in:
atraczyk
2017-07-26 16:43:19 -04:00
parent 10f6af463b
commit 084fa64bd8

View File

@ -1,3 +1,19 @@
--- a/pjlib/src/pj/os_core_win32.c
+++ b/pjlib/src/pj/os_core_win32.c
@@ -1334,12 +1334,7 @@ PJ_DEF(pj_status_t) pj_event_pulse(pj_event_t *event)
PJ_CHECK_STACK();
PJ_ASSERT_RETURN(event, PJ_EINVAL);
- PJ_LOG(6, (event->obj_name, "Pulsing event"));
-
- if (PulseEvent(event->hEvent))
- return PJ_SUCCESS;
- else
- return PJ_RETURN_OS_ERROR(GetLastError());
+ return PJ_SUCCESS;
}
/*
--- a/pjsip/build/pjsip_core.vcxproj
+++ b/pjsip/build/pjsip_core.vcxproj
@@ -211,7 +211,7 @@