]> Joshua Wise's Git repositories - netwatch.git/blame - aseg/packet.h
RFB should flag copies properly, and only commit output when it needs to.
[netwatch.git] / aseg / packet.h
CommitLineData
05c5b136
JP
1#ifndef _PAGETABLE_H
2#define _PAGETABLE_H
3
4#include <stdint.h>
5
6void * l2p(void * addr);
7
8typedef struct {
9 uint32_t signature;
10 uint32_t type;
11 uint8_t data[];
12} packet_t;
13
14packet_t * check_packet(uint32_t logical_addr);
15
16#endif /* _PAGETABLE_H */
This page took 0.023879 seconds and 4 git commands to generate.