2013-07-24 17:57:58 -04:00

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;
}