Esempio n. 1
0
bool M_BufferReadDoubles(buf_t *buf, double *d, size_t count) {
  return M_BufferRead(buf, d, count * sizeof(double));
}
Esempio n. 2
0
bool M_BufferReadString(buf_t *buf, char *s, size_t length) {
  return M_BufferRead(buf, s, length);
}
Esempio n. 3
0
bool M_BufferReadULongs(buf_t *buf, uint_64_t *l, size_t count) {
  return M_BufferRead(buf, l, count * sizeof(uint_64_t));
}
Esempio n. 4
0
bool M_BufferReadFloats(buf_t *buf, float *f, size_t count) {
  return M_BufferRead(buf, f, count * sizeof(float));
}
Esempio n. 5
0
bool M_BufferReadInts(buf_t *buf, int *i, size_t count) {
  return M_BufferRead(buf, i, count * sizeof(int));
}
Esempio n. 6
0
bool M_BufferReadUInts(buf_t *buf, unsigned int *i, size_t count) {
  return M_BufferRead(buf, i, count * sizeof(unsigned int));
}
Esempio n. 7
0
bool M_BufferReadShorts(buf_t *buf, short *s, size_t count) {
  return M_BufferRead(buf, s, count * sizeof(short));
}
Esempio n. 8
0
bool M_BufferReadUShorts(buf_t *buf, unsigned short *s, size_t count) {
  return M_BufferRead(buf, s, count * sizeof(unsigned short));
}
Esempio n. 9
0
bool M_BufferReadUChars(buf_t *buf, unsigned char *c, size_t count) {
  return M_BufferRead(buf, c, count * sizeof(unsigned char));
}
Esempio n. 10
0
bool M_BufferReadChars(buf_t *buf, char *c, size_t count) {
  return M_BufferRead(buf, c, count * sizeof(char));
}
Esempio n. 11
0
bool M_BufferReadBools(buf_t *buf, bool *b, size_t count) {
  return M_BufferRead(buf, b, count * sizeof(bool));
}
Esempio n. 12
0
File: buf.c Progetto: EmuxEvans/cmp
dboolean M_BufferReadLongs(buf_t *buf, int64_t *l, size_t count) {
  return M_BufferRead(buf, l, count * sizeof(int64_t));
}
Esempio n. 13
0
File: buf.c Progetto: EmuxEvans/cmp
dboolean M_BufferReadBools(buf_t *buf, dboolean *b, size_t count) {
  return M_BufferRead(buf, b, count * sizeof(dboolean));
}