static_struct.h
changeset 27 1e79b4cc8f1b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/static_struct.h	Mon Jul 07 04:36:03 2008 +0300
@@ -0,0 +1,15 @@
+#ifndef STATIC_STRUCT_H
+#define STATIC_STRUCT_H
+
+struct static_file {
+    // the file descriptor
+    int fh;
+
+    // the size of the file in bytes
+    off_t size;
+
+    // the mmap address
+    void *mmap_addr;
+};
+
+#endif /* STATIC_STRUCT_H */