Displaying 1 result from an estimated 1 matches for "example_ops".
Did you mean:
example_apps
2004 Feb 17
0
VFS module programmieren
...-> SMB_VFS_NEXT_CONNECT(conn,
service, user);
4.. Add "handle, " as first parameter to all SMB_VFS_NEXT_*() calls. e.g.
SMB_VFS_NEXT_CONNECT(conn, service, user); -> SMB_VFS_NEXT_CONNECT(handle,
conn, service, user);
5.. (Only for 2.2.* modules) Convert the old struct vfs_ops example_ops to
a vfs_op_tuple example_op_tuples[] array. e.g.
struct vfs_ops example_ops = {
/* Disk operations */
example_connect, /* connect */
example_disconnect, /* disconnect */
NULL, /* disk free *
/* Directory operations */
NULL, /* opendir */
NULL, /* readdir */
NULL, /* mkdir */...