Displaying 1 result from an estimated 1 matches for "example_op_tupl".
Did you mean:
example_op_tuples
2004 Feb 17
0
VFS module programmieren
..._type type;
vfs_op_layer layer;
} vfs_op_tuple;
op
the function pointer to the specified function.
type
the vfs_op_type of the function to specified witch operation the function
provides.
layer
the vfs_op_layer in whitch the function operates.
A simple example:
static vfs_op_tuple example_op_tuples[] = {
{SMB_VFS_OP(example_connect), SMB_VFS_OP_CONNECT,
SMB_VFS_LAYER_TRANSPARENT},
{SMB_VFS_OP(example_disconnect), SMB_VFS_OP_DISCONNECT,
SMB_VFS_LAYER_TRANSPARENT},
{SMB_VFS_OP(example_rename), SMB_VFS_OP_RENAME, SMB_VFS_LAYER_OPAQUE},
/* This indicates the end of the array */
{SMB_VFS_...