Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HostWindows.h « plugins - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45502cfc1b61aa94d2e345b661ccad29b000def7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2020-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.

#ifndef HOSTWINDOWS_H_
#define HOSTWINDOWS_H_

#include "Module.h"

typedef uint32_t procid_t;

class HostWindows {
protected:
	procid_t m_pid;

public:
	bool peek(const procptr_t address, void *dst, const size_t size) const;
	Modules modules() const;

	HostWindows(const procid_t pid);
	virtual ~HostWindows();
};

#endif