You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
360 B
C++
19 lines
360 B
C++
#ifndef WINDOWS_H
|
|
#define WINDOWS_H
|
|
|
|
#include <winsock2.h>
|
|
#include <windows.h>
|
|
#include "../shared/BruteForceBackend.hh"
|
|
|
|
class WindowsBackend : public BruteForceBackend {
|
|
public:
|
|
void start() override;
|
|
~WindowsBackend();
|
|
void subscribe(WatcherRef watcher) override;
|
|
void unsubscribe(WatcherRef watcher) override;
|
|
private:
|
|
bool mRunning;
|
|
};
|
|
|
|
#endif
|