protected static extern int doUpload(IntPtr daveConnection,ref int more, Byte[] buffer, ref int len,int uploadID);
private int DoUpload(int uploadID)
{
int ret = int.MinValue;
int len = int.MinValue;
Byte[] buffer = new Byte[16635];
int more = int.MinValue;//0 -> fertig | 1 -> es kommt noch was...