Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/jam_src/filesys.h @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 839 bytes
Line 
1/*
2 * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
3 *
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
6
7/*  This file is ALSO:
8 *  Copyright 2001-2004 David Abrahams.
9 *  Distributed under the Boost Software License, Version 1.0.
10 *  (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
11 */
12
13/*
14 * filesys.h - OS specific file routines
15 */
16
17#ifndef FILESYS_DWA20011025_H
18# define FILESYS_DWA20011025_H
19
20# include "pathsys.h"
21
22typedef void (*scanback)( void *closure, char *file, int found, time_t t );
23
24void file_dirscan( char *dir, scanback func, void *closure );
25void file_archscan( char *arch, scanback func, void *closure );
26
27int file_time( char *filename, time_t *time );
28
29void file_build1(PATHNAME *f, string* file) ;
30int file_is_file(char* filename);
31
32#endif
Note: See TracBrowser for help on using the repository browser.