I have a function written in c and exported in a dll made by microsoft visual C++ 6.0 like this:
#define BIPSRESLV_API __declspec(dllexport)
BIPSRESLV_API int bips_resolve_once
( char * ldapHost /* The Ldap server host name */
, const char * node /*The bitbus node name to be searched for */
, char * cn /*Returns the real cn found in the database (useful when using wildcards)*/
, char * bipsHost /*Returns the bips server host name */
, int * bipsPort /*Returns the bips server port number */
, uint8_t * nodeAddress /*Returns the bitbus node address (0-254) */
);
function bips_resolve_once
(ldapHost: PChar; // The Ldap server host name
node: PChar; // The bitbus node name to be searched for
cn: PChar; // Returns the real cn found in the database (useful when using wildcards)
bipsHost: PChar; // Returns the bips server host name
var bipsPort: Integer; // Returns the bips server port number
var nodeAddress: Byte // Returns the bitbus node address (0-254)
): Integer; stdccall;
implementation
function bips_resolve_once; external 'DLLName.DLL' name 'bips_resolve_once';
barzangy:
This old question needs to be finalized -- accept an answer, split points, or get a refund. For information on your options, please click here-> http:/help/closing.jsp#1
EXPERTS:
Post your closing recommendations! No comment means you don't care.
0
Question has a verified solution.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
ZipGrep is a utility that can list and search zip (.war, .ear, .jar, etc) archives for text patterns, without the need to extract the archive's contents.
One of a set of tools we're offering as a way to say thank you for being a part of the community.
(ldapHost: PChar; // The Ldap server host name
node: PChar; // The bitbus node name to be searched for
cn: PChar; // Returns the real cn found in the database (useful when using wildcards)
bipsHost: PChar; // Returns the bips server host name
var bipsPort: Integer; // Returns the bips server port number
var nodeAddress: Byte // Returns the bitbus node address (0-254)
): Integer; stdccall;
implementation
function bips_resolve_once; external 'DLLName.DLL' name 'bips_resolve_once';