blob: 32c0d779760e345daa4336788f505ca8c4344a91 (
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
|