10 lines
141 B
C++
10 lines
141 B
C++
#ifndef MACHINE_CODE_H
|
|
#define MACHINE_CODE_H
|
|
|
|
#include <string>
|
|
|
|
// 获取机器码
|
|
std::string getMachineCode();
|
|
|
|
#endif // MACHINE_CODE_H
|