コード例 #1
0
        private IntPtr DdeClientCallback(int uType, ConversionFormat uFmt, IntPtr hConv, IntPtr hsz1, IntPtr hsz2, IntPtr hData, uint dwData1, uint dwData2)
        {
            int dwLength = 0;

            //DateTime time = DateTime.Now;
            unsafe
            {
                switch (uType)
                {
                case Ddeml.XTYP_ADVDATA:
                    try
                    {
                        sbyte *pData = (sbyte *)Ddeml.DdeAccessData(hData, ref dwLength);
                        if (pData != null)
                        {
                            sbyte *pSZ = stackalloc sbyte[0xFF];
                            Ddeml.DdeQueryString(dwDDEInst, hsz2, pSZ, 0xFF, Ddeml.CP_WINANSI);
                            if (DDEValueChange != null)
                            {
                                DDEValueChange(this, new DDEValueChangeEventArgs(new string(pSZ).ToUpper(), new string(pData, 0, dwLength)));
                            }
                        }
                    }
                    catch { }
                    finally
                    {
                        if (hData != IntPtr.Zero)
                        {
                            Ddeml.DdeUnaccessData(hData);
                        }
                    }
                    break;

                case Ddeml.XTYP_DISCONNECT:
                    if (OnError != null)
                    {
                        OnError(this, new IOErrorEventArgs("XTYP_DISCONNECT"));
                    }
                    _connected = false;
                    break;

                case Ddeml.XTYP_XACT_COMPLETE:
                    break;

                default:
                    break;
                }
            }
            return(new IntPtr(Ddeml.DDE_FACK));
        }
コード例 #2
0
 public void Resume(IntPtr hConv)
 {
     if (IsDisposed)
     {
         throw new ObjectDisposedException(this.GetType().ToString());
     }
     if (!IsRegistered)
     {
         throw new InvalidOperationException("NotRegisteredMessage");
     }
     // Check the result to see if the DDEML callback was enabled.
     if (!Ddeml.DdeEnableCallback(_InstanceId, hConv, Ddeml.EC_ENABLEALL))
     {
         int error = Ddeml.DdeGetLastError(_InstanceId);
         Ddeml.DDEGetErrorMsg(error);
     }
 }
コード例 #3
0
        public unsafe bool Connect()
        {
            IntPtr hConv, hszService, hszTopic;

            if (dwDDEInst != 0)
            {
                Ddeml.DdeUninitialize(dwDDEInst);
                dwDDEInst = 0;
            }
            if (hconvCurrent != IntPtr.Zero)
            {
                Ddeml.DdeDisconnect(hconvCurrent);
                hconvCurrent = IntPtr.Zero;
            }
            ;
            //如果是第一次,则什么也不做
            Ddeml.DdeInitialize(ref dwDDEInst, _Callback, 0x3f000, 0);
            // Connect to the server
            hszTopic   = Ddeml.DdeCreateStringHandle(dwDDEInst, _topic, Ddeml.CP_WINANSI);
            hszService = Ddeml.DdeCreateStringHandle(dwDDEInst, _server, Ddeml.CP_WINANSI);
            CONVCONTEXT cc = new CONVCONTEXT();

            cc.cb = sizeof(CONVCONTEXT);
            hConv = Ddeml.DdeConnect(dwDDEInst, hszService, hszTopic, ref cc);
            //int DdeErrcode = Win32.DdeGetLastError(dwDDEInst);

            Ddeml.DdeFreeStringHandle(dwDDEInst, hszTopic);
            Ddeml.DdeFreeStringHandle(dwDDEInst, hszService);

            if (hConv != IntPtr.Zero)
            {
                if (hconvCurrent != IntPtr.Zero)
                {
                    Ddeml.DdeDisconnect(hconvCurrent);
                }
                hconvCurrent = hConv;
                _connected   = true;
                return(true);
            }
            else
            {
                _connected = false;
                return(false);
            }
        }
コード例 #4
0
 public void Disconnect()
 {
     if (IsDisposed)
     {
         throw new ObjectDisposedException(this.GetType().ToString());
     }
     if (!IsRegistered)
     {
         throw new InvalidOperationException("NotRegisteredMessage");
     }
     // Terminate all conversations.
     foreach (IntPtr hConv in _ConversationTable)
     {
         Ddeml.DdeDisconnect(hConv);
     }
     // clear the hConv table.
     _ConversationTable.Clear();
 }
コード例 #5
0
 public void Disconnect(IntPtr hConv)
 {
     if (IsDisposed)
     {
         throw new ObjectDisposedException(this.GetType().ToString());
     }
     if (!IsRegistered)
     {
         throw new InvalidOperationException("NotRegisteredMessage");
     }
     if (_ConversationTable.Contains(hConv))
     {
         // Terminate the hConv.
         Ddeml.DdeDisconnect(hConv);
         // Remove the Conversation from the hConv table.
         _ConversationTable.Remove(hConv);
     }
 }
コード例 #6
0
        //必须设置item.ItemName和item.ItemValue后调用
        public int Poke(string name, string value)
        {
            IntPtr hszItem, hDDEData;
            int    dwResult = 0;

            if (string.IsNullOrEmpty(name))
            {
                return(-2);
            }
            if (hconvCurrent != IntPtr.Zero)
            {
                hszItem = Ddeml.DdeCreateStringHandle(dwDDEInst, name, Ddeml.CP_WINANSI);
                if (!string.IsNullOrEmpty(name))
                {
                    //int errcode=Win32.DdeGetLastError(dwDDEInst);
                    byte[] ByteArray = Encoding.ASCII.GetBytes(value);
                    IntPtr hd        = Ddeml.DdeCreateDataHandle(dwDDEInst, ByteArray, ByteArray.Length, 0, hszItem, ConversionFormat.TEXT, 0);
                    hDDEData = Ddeml.DdeClientTransaction(
                        ByteArray, ByteArray.Length,
                        hconvCurrent, hszItem,
                        ConversionFormat.TEXT,                            //CF_TEXT,
                        Ddeml.XTYP_POKE,
                        Ddeml.TIMEOUT_ASYNC,                              // ms timeout
                        ref dwResult);
                    Ddeml.DdeFreeStringHandle(dwDDEInst, hszItem);

                    if (hDDEData != IntPtr.Zero)
                    {
                        return(1);
                    }
                }
                return(-1);
            }
            else
            {
                return(-1);
            }
        }
コード例 #7
0
        // Arrête une transaction Advise.
        public void AdvStop(IntPtr hConv, string item, ConversionFormat wFormat)
        {
            if (!IsRegistered)
            {
                return;
            }
            // Création de la chaîne DDE de l'élément.
            IntPtr hszItem = Ddeml.DdeCreateStringHandle(_InstanceId, item, Ddeml.CP_WINANSI);

            if ((hszItem == IntPtr.Zero) && (item.Length != 0))
            {
                return;
            }
            // Exécution de la transaction.
            int res = 0;

            Ddeml.DdeClientTransaction(null, 0, hConv, hszItem, wFormat, Ddeml.XTYP_ADVSTOP, Ddeml.TIMEOUT_ASYNC, ref res);
            // Libération de la chaîne DDE.
            if (hszItem != IntPtr.Zero)
            {
                Ddeml.DdeFreeStringHandle(_InstanceId, hszItem);
            }
        }
コード例 #8
0
        // Démarre une transaction Advise.
        public bool AdvStart(IntPtr hConv, string item, ConversionFormat wFormat, int wFlag)
        {
            if (!IsRegistered)
            {
                return(false);
            }
            int res = 0;
            // Création de la chaîne DDE de l'élément.
            IntPtr hszItem = Ddeml.DdeCreateStringHandle(_InstanceId, item, Ddeml.CP_WINANSI);

            if ((hszItem == IntPtr.Zero) && (item.Length != 0))
            {
                return(false);
            }
            // Exécution de la transaction.
            Ddeml.DdeClientTransaction(null, 0, hConv, hszItem, wFormat, (wFlag == Ddeml.XTYPF_ACKREQ) ?
                                       (Ddeml.XTYP_ADVSTARTACKREQ) : ((wFlag == Ddeml.XTYPF_NODATA) ? (Ddeml.XTYP_ADVSTARTNODATA) : (Ddeml.XTYP_ADVSTART)), Ddeml.TIMEOUT_ASYNC, ref res);
            // Libération de la chaîne DDE.
            if (hszItem != IntPtr.Zero)
            {
                Ddeml.DdeFreeStringHandle(_InstanceId, hszItem);
            }
            return(res != 0);
        }
コード例 #9
0
 public void Uninitialize()
 {
     Ddeml.DdeUninitialize(_InstanceId);
 }
コード例 #10
0
        private IntPtr OnDdeCallback(int uType, ConversionFormat uFmt, IntPtr hConv, IntPtr hsz1, IntPtr hsz2, IntPtr hData, uint dwData1, uint dwData2)
        {
            // Create a new transaction object that will be dispatched to a DdemlClient, DdemlServer, or ITransactionFilter.
            // Dispatch the transaction.
            switch (uType)
            {
            case Ddeml.XTYP_MONITOR:
                switch (dwData2)
                {
                case Ddeml.MF_CALLBACKS:
                {
                    // Get the MONCBSTRUCT object.
                    int         length = 0;
                    IntPtr      phData = Ddeml.DdeAccessData(hData, ref length);
                    MONCBSTRUCT mon    = (MONCBSTRUCT)Marshal.PtrToStructure(phData, typeof(MONCBSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnCallback(mon);
                    return(IntPtr.Zero);
                }

                case Ddeml.MF_CONV:
                {
                    // Get the MONCONVSTRUCT object.
                    int           length = 0;
                    IntPtr        phData = Ddeml.DdeAccessData(hData, ref length);
                    MONCONVSTRUCT mon    = (MONCONVSTRUCT)Marshal.PtrToStructure(phData, typeof(MONCONVSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnConversation(mon);
                    return(IntPtr.Zero);
                }

                case Ddeml.MF_ERRORS:
                {
                    // Get the MONERRSTRUCT object.
                    int          length = 0;
                    IntPtr       phData = Ddeml.DdeAccessData(hData, ref length);
                    MONERRSTRUCT mon    = (MONERRSTRUCT)Marshal.PtrToStructure(phData, typeof(MONERRSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnError(mon);
                    return(IntPtr.Zero);
                }

                case Ddeml.MF_HSZ_INFO:
                {
                    // Get the MONHSZSTRUCT object.
                    int          length = 0;
                    IntPtr       phData = Ddeml.DdeAccessData(hData, ref length);
                    MONHSZSTRUCT mon    = (MONHSZSTRUCT)Marshal.PtrToStructure(phData, typeof(MONHSZSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnString(mon);
                    return(IntPtr.Zero);
                }

                case Ddeml.MF_LINKS:
                {
                    // Get the MONLINKSTRUCT object.
                    int           length = 0;
                    IntPtr        phData = Ddeml.DdeAccessData(hData, ref length);
                    MONLINKSTRUCT mon    = (MONLINKSTRUCT)Marshal.PtrToStructure(phData, typeof(MONLINKSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnLink(mon);
                    return(IntPtr.Zero);
                }

                case Ddeml.MF_POSTMSGS:
                {
                    // Get the MONMSGSTRUCT object.
                    int          length = 0;
                    IntPtr       phData = Ddeml.DdeAccessData(hData, ref length);
                    MONMSGSTRUCT mon    = (MONMSGSTRUCT)Marshal.PtrToStructure(phData, typeof(MONMSGSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnPost(mon);
                    return(IntPtr.Zero);
                }

                case Ddeml.MF_SENDMSGS:
                {
                    // Get the MONMSGSTRUCT object.
                    int          length = 0;
                    IntPtr       phData = Ddeml.DdeAccessData(hData, ref length);
                    MONMSGSTRUCT mon    = (MONMSGSTRUCT)Marshal.PtrToStructure(phData, typeof(MONMSGSTRUCT));
                    Ddeml.DdeUnaccessData(hData);
                    OnSend(mon);
                    return(IntPtr.Zero);
                }
                }
                break;

            case Ddeml.XTYP_ADVDATA:
                unsafe
                {
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    byte * bt   = stackalloc byte[Ddeml.MAX_STRING_SIZE];
                    len = Ddeml.DdeGetData(hData, bt, Ddeml.MAX_STRING_SIZE, 0);
                    byte[] bytes = new byte[len]; for (int i = 0; i < len; i++)
                    {
                        bytes[i] = *bt++;
                    }
                    ;
                    if (hData != IntPtr.Zero)
                    {
                        Ddeml.DdeUnaccessData(hData);
                    }
                    return(new IntPtr((int)OnAdvData(uFmt, topic, item, bytes)));
                }

            case Ddeml.XTYP_ADVREQ:
                unsafe
                {
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    byte[] data = OnAdvReq(uFmt, topic, item);
                    // Create and return the data handle representing the data being advised.
                    if (data != null && data.Length > 0)
                    {
                        return(Ddeml.DdeCreateDataHandle(_InstanceId, data, data.Length, 0, hsz2, uFmt, 0));;
                    }
                    // This transaction could not be Ddeml.DDE_FACK here.
                    return(IntPtr.Zero);
                }

            case Ddeml.XTYP_ADVSTART:
                unsafe
                {
                    // Get the item name from the hsz2 string handle.
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    // Get a value indicating whether an advise loop should be initiated from the subclass.
                    //AdvStart(hConv, item, uFmt, Ddeml.XTYPF_ACKREQ);
                    return(OnAdvStart(uFmt, topic, item) ? new IntPtr(1) : IntPtr.Zero);
                }

            case Ddeml.XTYP_ADVSTOP:
                unsafe
                {
                    // Get the item name from the hsz2 string handle.
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    // Inform the subclass that the advise loop has been terminated.
                    //AdvStop(hConv, item, uFmt);
                    OnAdvStop(uFmt, topic, item);
                    break;
                }

            case Ddeml.XTYP_CONNECT:
                unsafe
                {
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    // Get a value from the subclass indicating whether the connection should be allowed.
                    return(OnConnect(topic, new CONVCONTEXT(), true) ? new IntPtr(1) : IntPtr.Zero);
                }

            case Ddeml.XTYP_CONNECT_CONFIRM:
                unsafe
                {
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    // Create a Conversation object and add it to the hConv table.
                    _ConversationTable.Add(hConv);
                    // Inform the subclass that a hConv has been established.
                    OnConnectConfirm(topic, true);
                    break;
                }

            case Ddeml.XTYP_DISCONNECT:
            {
                // Remove the Conversation from the hConv table.
                _ConversationTable.Remove(hConv);
                // Inform the subclass that the hConv has been disconnected.
                OnDisconnect(true);
                // Return zero to indicate that there are no problems.
                return(IntPtr.Zero);
            }

            case Ddeml.XTYP_EXECUTE:
                unsafe
                {
                    // Get the command from the data handle.
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    byte * bt    = stackalloc byte[Ddeml.MAX_STRING_SIZE];
                    len = Ddeml.DdeGetData(hData, bt, Ddeml.MAX_STRING_SIZE, 0);
                    string command = new string((sbyte *)bt);
                    // Send the command to the subclass and get the resul
                    return(new IntPtr((int)OnExecute(topic, command.TrimEnd('\0'))));
                }

            case Ddeml.XTYP_POKE:
                unsafe
                {
                    // Get the item name from the hsz2 string handle.
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    byte * bt   = stackalloc byte[Ddeml.MAX_STRING_SIZE];
                    len = Ddeml.DdeGetData(hData, bt, Ddeml.MAX_STRING_SIZE, 0);
                    byte[] data = new byte[len]; for (int i = 0; i < len; i++)
                    {
                        data[i] = *bt++;
                    }
                    ;
                    // Send the data to the subclass and get the resul
                    return(new IntPtr((int)OnPoke(uFmt, topic, item, data)));
                }

            case Ddeml.XTYP_REQUEST:
                unsafe
                {
                    // Get the item name from the hsz2 string handle.
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    // Send the request to the subclass and get the resul
                    var result = OnRequest(uFmt, topic, item);
                    // Return a data handle if the subclass Ddeml.DDE_FACK the request successfully.
                    if (result != null)
                    {
                        return(Ddeml.DdeCreateDataHandle(_InstanceId, result, result.Length, 0, hsz2, uFmt, 0));
                    }
                    // Return DDE_FDdeml.DDE_FNOTDdeml.DDE_FACK if the subclass did not process the command.
                    return(new IntPtr(Ddeml.DDE_FNOTPROCESSED));
                }

            case Ddeml.XTYP_XACT_COMPLETE:
                unsafe
                {
                    sbyte *pSZ   = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len   = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string topic = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string item = new string(pSZ);
                    OnXactComplete(uFmt, topic, item, hData, dwData1);
                    break;
                }

            case Ddeml.XTYP_WILDCONNECT:
            {
                // This library does not support wild connects.
                return(IntPtr.Zero);
            }

            case Ddeml.XTYP_ERROR:
            {
                // Get the error code, but do nothing with it at this time.
                return(IntPtr.Zero);
            }

            case Ddeml.XTYP_REGISTER:
                unsafe
                {
                    // Get the service name from the hsz1 string handle.
                    sbyte *pSZ = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string bas = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string inst = new string(pSZ);
                    OnRegister(bas, inst);
                    return(IntPtr.Zero);
                }

            case Ddeml.XTYP_UNREGISTER:
                unsafe
                {
                    sbyte *pSZ = stackalloc sbyte[Ddeml.MAX_STRING_SIZE];
                    int    len = Ddeml.DdeQueryString(_InstanceId, hsz1, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string bas = new string(pSZ);
                    len = Ddeml.DdeQueryString(_InstanceId, hsz2, pSZ, Ddeml.MAX_STRING_SIZE, Ddeml.CP_WINANSI);
                    string inst = new string(pSZ);
                    OnUnRegister(bas, inst);
                    return(IntPtr.Zero);
                }
            }
            return(IntPtr.Zero);
        }