Class DdemlUtil.DdeConnectionList

  • java.lang.Object
    • com.sun.jna.platform.win32.DdemlUtil.DdeConnectionList
    • Method Detail

      • queryNextServer

        public DdemlUtil.IDdeConnection queryNextServer​(DdemlUtil.IDdeConnection prevConnection)
        Description copied from interface: DdemlUtil.IDdeConnectionList
        Retrieves the next conversation handle in the specified conversation list.
        Specified by:
        queryNextServer in interface DdemlUtil.IDdeConnectionList
        Parameters:
        prevConnection - A handle to the conversation handle previously returned by this function. If this parameter is NULL, the function returns the first conversation handle in the list.
        Returns:
        If the list contains any more conversation handles, the return value is the next conversation IDdeConnection in the list; otherwise it is NULL.
      • close

        public void close()
        Description copied from interface: DdemlUtil.IDdeConnectionList
        Destroys the specified conversation list and terminates all conversations associated with the list.

        If the function fails a DdeException is raised with the appropriate errorCode:

        • DMLERR_DLL_NOT_INITIALIZED
        • DMLERR_INVALIDPARAMETER
        • DMLERR_NO_ERROR

        Note: This wraps DdeDisconnectList to align with Closeable wording.

        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in interface DdemlUtil.IDdeConnectionList