This commit is contained in:
2025-11-24 14:19:51 +05:30
commit f5c1412b28
6734 changed files with 1527575 additions and 0 deletions

View File

@ -0,0 +1,202 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.12
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
namespace SLNet {
using System;
using System.Runtime.InteropServices;
public class OnFileStruct : IDisposable {
private HandleRef swigCPtr;
protected bool swigCMemOwn;
internal OnFileStruct(IntPtr cPtr, bool cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = new HandleRef(this, cPtr);
}
internal static HandleRef getCPtr(OnFileStruct obj) {
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
}
~OnFileStruct() {
Dispose();
}
public virtual void Dispose() {
lock(this) {
if (swigCPtr.Handle != IntPtr.Zero) {
if (swigCMemOwn) {
swigCMemOwn = false;
SLikeNetPINVOKE.delete_OnFileStruct(swigCPtr);
}
swigCPtr = new HandleRef(null, IntPtr.Zero);
}
GC.SuppressFinalize(this);
}
}
private bool fileDataIsCached = false;
private byte[] fileDataCache;
public uint fileIndex {
set {
SLikeNetPINVOKE.OnFileStruct_fileIndex_set(swigCPtr, value);
}
get {
uint ret = SLikeNetPINVOKE.OnFileStruct_fileIndex_get(swigCPtr);
return ret;
}
}
public string fileName {
set {
SLikeNetPINVOKE.OnFileStruct_fileName_set(swigCPtr, value);
}
get {
string ret = SLikeNetPINVOKE.OnFileStruct_fileName_get(swigCPtr);
return ret;
}
}
public byte[] fileData {
set
{
fileDataCache=value;
fileDataIsCached = true;
SetFileData (value, value.Length);
}
get
{
byte[] returnArray;
if (!fileDataIsCached)
{
IntPtr cPtr = SLikeNetPINVOKE.OnFileStruct_fileData_get (swigCPtr);
int len = (int) byteLengthOfThisFile;
if (len<=0)
{
return null;
}
returnArray = new byte[len];
byte[] marshalArray = new byte[len];
Marshal.Copy(cPtr, marshalArray, 0, len);
marshalArray.CopyTo(returnArray, 0);
fileDataCache = returnArray;
fileDataIsCached = true;
}
else
{
returnArray = fileDataCache;
}
return returnArray;
}
}
public uint byteLengthOfThisFile {
set {
SLikeNetPINVOKE.OnFileStruct_byteLengthOfThisFile_set(swigCPtr, value);
}
get {
uint ret = SLikeNetPINVOKE.OnFileStruct_byteLengthOfThisFile_get(swigCPtr);
return ret;
}
}
public uint bytesDownloadedForThisFile {
set {
SLikeNetPINVOKE.OnFileStruct_bytesDownloadedForThisFile_set(swigCPtr, value);
}
get {
uint ret = SLikeNetPINVOKE.OnFileStruct_bytesDownloadedForThisFile_get(swigCPtr);
return ret;
}
}
public ushort setID {
set {
SLikeNetPINVOKE.OnFileStruct_setID_set(swigCPtr, value);
}
get {
ushort ret = SLikeNetPINVOKE.OnFileStruct_setID_get(swigCPtr);
return ret;
}
}
public uint numberOfFilesInThisSet {
set {
SLikeNetPINVOKE.OnFileStruct_numberOfFilesInThisSet_set(swigCPtr, value);
}
get {
uint ret = SLikeNetPINVOKE.OnFileStruct_numberOfFilesInThisSet_get(swigCPtr);
return ret;
}
}
public uint byteLengthOfThisSet {
set {
SLikeNetPINVOKE.OnFileStruct_byteLengthOfThisSet_set(swigCPtr, value);
}
get {
uint ret = SLikeNetPINVOKE.OnFileStruct_byteLengthOfThisSet_get(swigCPtr);
return ret;
}
}
public uint bytesDownloadedForThisSet {
set {
SLikeNetPINVOKE.OnFileStruct_bytesDownloadedForThisSet_set(swigCPtr, value);
}
get {
uint ret = SLikeNetPINVOKE.OnFileStruct_bytesDownloadedForThisSet_get(swigCPtr);
return ret;
}
}
public FileListNodeContext context {
set {
SLikeNetPINVOKE.OnFileStruct_context_set(swigCPtr, FileListNodeContext.getCPtr(value));
}
get {
IntPtr cPtr = SLikeNetPINVOKE.OnFileStruct_context_get(swigCPtr);
FileListNodeContext ret = (cPtr == IntPtr.Zero) ? null : new FileListNodeContext(cPtr, false);
return ret;
}
}
public SystemAddress senderSystemAddress {
set {
SLikeNetPINVOKE.OnFileStruct_senderSystemAddress_set(swigCPtr, SystemAddress.getCPtr(value));
}
get {
IntPtr cPtr = SLikeNetPINVOKE.OnFileStruct_senderSystemAddress_get(swigCPtr);
SystemAddress ret = (cPtr == IntPtr.Zero) ? null : new SystemAddress(cPtr, false);
return ret;
}
}
public RakNetGUID senderGuid {
set {
SLikeNetPINVOKE.OnFileStruct_senderGuid_set(swigCPtr, RakNetGUID.getCPtr(value));
}
get {
IntPtr cPtr = SLikeNetPINVOKE.OnFileStruct_senderGuid_get(swigCPtr);
RakNetGUID ret = (cPtr == IntPtr.Zero) ? null : new RakNetGUID(cPtr, false);
return ret;
}
}
public OnFileStruct() : this(SLikeNetPINVOKE.new_OnFileStruct(), true) {
}
private void SetFileData(byte[] inByteArray, int numBytes) {
SLikeNetPINVOKE.OnFileStruct_SetFileData(swigCPtr, inByteArray, numBytes);
}
}
}