File: OutBuffer.h

package info (click to toggle)
gmod 3.1-2
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 1,348 kB
  • ctags: 808
  • sloc: cpp: 7,755; makefile: 82
file content (14 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// -*-C++-*-
// This file is part of the gmod package
// Copyright (C) 1997 by Andrew J. Robinson

#ifndef OutBuffer_h
#define OutBuffer_h

struct OutBuffer
{
	int n_bytes;
	int offset;
	char buffer[2048];
};
#endif