home *** CD-ROM | disk | FTP | other *** search
- /*
-
- DDE.RC -- Resource File for DDE.UCD
- Copyright 1987-1991, Authorware, Inc.
-
- Revision History
-
- 7/25/91 - Initial version
-
- */
-
- #include "windows.h"
-
-
- /*
- The following custom resource is the directory of functions which can be
- accessed by APW. Each function is defined in detail by its own custom
- resource.
- */
-
- 1 DLL_HEADER LOADONCALL DISCARDABLE
- BEGIN
- "DDEInitialize\0",
- "DDETerminate\0",
- "DDERequestString\0",
- "DDEDataString\0",
- "DDEExecuteString\0",
- "\0"
- END
-
-
- /*
- The following are the custom resources which define all attributes for
- loading a specific function. Each function is listed in the directory
- of funtions.
- */
-
- DDEInitialize DLL_HEADER LOADONCALL DISCARDABLE
- BEGIN
- "\0",
- "W\0",
- "SS\0",
- "ddelink := DDEInitialize(app, topic)\r\n",
- "\r\n",
- "This function initializes a DDE session with the application \042app\042 ",
- "on the topic \042topic\042. ",
- "It returns a handle to the DDE session. ",
- "This handle must be passed to all subsequent DDE user code functions.\0",
- END
-
-
- DDETerminate DLL_HEADER LOADONCALL DISCARDABLE
- BEGIN
- "\0",
- "V\0",
- "W\0",
- "DDETerminate(ddelink)\r\n",
- "\r\n",
- "This function terminates the DDE session associated with ddelink. ",
- "ddelink must have been initialized with a call to DDEInitialize prior to ",
- "using this function.\0"
- END
-
-
- DDERequestString DLL_HEADER LOADONCALL DISCARDABLE
- BEGIN
- "\0",
- "W\0",
- "WS\0",
- "status := DDERequestString(ddelink,item)\r\n",
- "\r\n",
- "This function requests data specified by \042item\042 from the server as a string. ",
- "Use DDEDataString to retrieve the string. ",
- "ddelink must have been initialized with a call to DDEInitialize prior to ",
- "using this function. "
- "It returns 1 for success and 0 for failure.\0"
- END
-
-
- DDEDataString DLL_HEADER LOADONCALL DISCARDABLE
- BEGIN
- "\0",
- "S\0",
- "W\0",
- "data := DDEDataString(ddelink)\r\n",
- "\r\n",
- "This function returns the data from a DDERequestString. ",
- "ddelink must have been initialized with a call to DDEInitialize prior to ",
- "using this function. "
- "It return a null string if the data is not yet available or if the ",
- "DDERequestString call failed.\0"
- END
-
-
- DDEExecuteString DLL_HEADER LOADONCALL DISCARDABLE
- BEGIN
- "\0",
- "W\0",
- "WS\0",
- "status := DDEExecuteString(ddelink,item)\r\n",
- "\r\n",
- "This function requests the server to execute the string \042item\042. ",
- "ddelink must have been initialized with a call to DDEInitialize prior to ",
- "using this function. "
- "It returns 1 if the request was made and 0 for failure.\0"
- END
-