mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-29 22:04:33 +00:00
16 lines
313 B
C++
16 lines
313 B
C++
#include "parse.h"
|
|
|
|
using namespace boost;
|
|
|
|
bool readByte(bounded_buffer *b, ::uint32_t offset, ::uint8_t &out) {
|
|
return false;
|
|
}
|
|
|
|
bool readWord(bounded_buffer *b, ::uint32_t offset, ::uint16_t &out) {
|
|
return false;
|
|
}
|
|
|
|
bool readDword(bounded_buffer *b, ::uint32_t offset, ::uint32_t &out) {
|
|
return false;
|
|
}
|