1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- namespace SMBLibrary.Server
- {
- internal class OpenFileObject
- {
- public uint TreeID;
- public string ShareName;
- public string Path;
- public object Handle;
- public OpenFileObject(uint treeID, string shareName, string path, object handle)
- {
- TreeID = treeID;
- ShareName = shareName;
- Path = path;
- Handle = handle;
- }
- }
- }
|