blob: c23b2dcd032923a0c4e99e441c95f0fd17fa41af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _PINGTHREAD_H
#define _PINGTHREAD_H
#include <string>
#include <sstream>
#include "pinglist.h"
#include "utils.h"
#include "options.h"
extern HANDLE mainThread;
extern HANDLE hWakeEvent;
extern CRITICAL_SECTION thread_finished_cs, list_changed_cs, data_list_cs;
extern PINGLIST data_list;
void start_ping_thread();
void stop_ping_thread();
int FillList(WPARAM wParam, LPARAM lParam);
#endif
|