mirror of
https://github.com/paxed/dgamelaunch.git
synced 2025-09-26 11:18:53 +02:00
also add a dgl-banner file that has a $VERSION token that one can put anywhere, replace VER[1-7] and VERLINES git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@24 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
16 lines
167 B
C
16 lines
167 B
C
#ifndef __TTYREC_H__
|
|
#define __TTYREC_H__
|
|
|
|
#include <sys/time.h>
|
|
#include <sys/types.h>
|
|
|
|
typedef struct header
|
|
{
|
|
struct timeval tv;
|
|
size_t len;
|
|
}
|
|
Header;
|
|
|
|
|
|
#endif
|