Check-in [1ecab39ce5]
Overview
Comment:Renamed core bits to "xvfs-core"
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1ecab39ce5e2b0af9e0c7324bb9cb70369c0a7947ffa0d3e428acdf1880477d8
User & Date: rkeene on 2019-05-02 14:16:15
Other Links: manifest | tags
Context
2019-05-02
14:21
Added bare example check-in: 0a9369ff13 user: rkeene tags: trunk
14:16
Renamed core bits to "xvfs-core" check-in: 1ecab39ce5 user: rkeene tags: trunk
13:58
Moved header to template check-in: 303b2de493 user: rkeene tags: trunk
Changes

Name change from xvfs-common.c to xvfs-core.c.

Name change from xvfs-common.h to xvfs-core.h.

Modified xvfs.c.rvt from [9f0d4ad9d1] to [4e953f2209].

1
2
3
4
5
6
7
8
#include <xvfs-common.h>
#include <unistd.h>
#include <tcl.h>

typedef enum {
	XVFS_FILE_TYPE_REG,
	XVFS_FILE_TYPE_DIR
} xvfs_file_type_t;
|







1
2
3
4
5
6
7
8
#include <xvfs-core.h>
#include <unistd.h>
#include <tcl.h>

typedef enum {
	XVFS_FILE_TYPE_REG,
	XVFS_FILE_TYPE_DIR
} xvfs_file_type_t;