Prechádzať zdrojové kódy

segment lib: add header with internal fns

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51951 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 13 rokov pred
rodič
commit
1fd263515b
1 zmenil súbory, kde vykonal 27 pridanie a 0 odobranie
  1. 27 0
      lib/segment/local_proto.h

+ 27 - 0
lib/segment/local_proto.h

@@ -0,0 +1,27 @@
+#ifndef SEGMENT_LOCAL_H
+#define SEGMENT_LOCAL_H
+
+#include <grass/segment.h>
+
+/* address.c */
+int segment_address(const SEGMENT *, off_t, off_t, int *, int *);
+int segment_address_fast(const SEGMENT *, off_t, off_t, int *, int *);
+int segment_address_slow(const SEGMENT *, off_t, off_t, int *, int *);
+
+/* pagein.c */
+int segment_pagein(SEGMENT *, int);
+
+/* pageout.c */
+int segment_pageout(SEGMENT *, int);
+
+/* seek.c */
+int segment_seek(const SEGMENT *, int, int);
+int segment_seek_fast(const SEGMENT *, int, int);
+int segment_seek_slow(const SEGMENT *, int, int);
+
+/* setup.c */
+int segment_setup(SEGMENT *);
+
+
+#endif /* SEGMENT_LOCAL_H */
+