added closing brace for extern "C" in websocket.h (#8468)

This commit is contained in:
Amir Rasouli 2019-04-20 21:03:17 -05:00 коммит произвёл Sam Clegg
Родитель c49428c512
Коммит d4548bb7eb
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -399,3 +399,4 @@ a license to everyone to use it as detailed in LICENSE.)
* Timothy Trindle <titrindl@microsoft.com> (copyright owned by Microsoft, Inc.)
* Matthew Andres Moreno <m.more500@gmail.com>
* Eric Mandel <eric@cfa.harvard.edu>
* Amir Rasouli <arasouli91@gmail.com>

Просмотреть файл

@ -113,3 +113,7 @@ EMSCRIPTEN_RESULT emscripten_websocket_delete(EMSCRIPTEN_WEBSOCKET_T socket);
// even after the pthread quits, although be warned that if the target thread that was registered to handle events for a given WebSocket quits, then those
// events will stop from being delivered altogether.
void emscripten_websocket_deinitialize(void);
#ifdef __cplusplus
} // ~extern "C"
#endif