mirror of
https://github.com/etaHEN/etaHEN.git
synced 2026-01-14 20:14:39 +08:00
15 lines
209 B
C++
15 lines
209 B
C++
#pragma once
|
|
|
|
#include "../thread.hpp"
|
|
|
|
struct ElfLoaderBase {
|
|
void run();
|
|
};
|
|
|
|
class ElfLoader : public ElfLoaderBase, public JThread<ElfLoaderBase> {
|
|
friend struct ElfLoaderBase;
|
|
|
|
public:
|
|
void run();
|
|
};
|