]> git.ipfire.org Git - thirdparty/git.git/blobdiff - packfile.h
documentation: fix whitespace issues
[thirdparty/git.git] / packfile.h
index 665603b696a1e852ea9b0de0de7268540fe2870d..c3692308b8dc866b2b99b2ed9b983db4d6d1352b 100644 (file)
@@ -6,10 +6,22 @@
 
 /* in object-store.h */
 struct packed_git;
-struct pack_entry;
-struct pack_window;
 struct object_info;
 
+struct pack_window {
+       struct pack_window *next;
+       unsigned char *base;
+       off_t offset;
+       size_t len;
+       unsigned int last_used;
+       unsigned int inuse_cnt;
+};
+
+struct pack_entry {
+       off_t offset;
+       struct packed_git *p;
+};
+
 /*
  * Generate the filename to be used for a pack file with checksum "sha1" and
  * extension "ext". The result is written into the strbuf "buf", overwriting