LotusScript to C API Programming Guide

rtLib Domino Rich Text Management template
Home
Show details for ContentContent
Purchase
Ready-to-use samples
Hide details for Online resourcesOnline resources
Technotes and goodies
Reference
Header files
Forum
Links
Happy readers

Anonymous

login


 

Hosted by Prominic.NET, Inc.
Main topic: ldap_get_dn returns a pointer to a string

ldap_get_dn returns a pointer to a string (by James Fricker, 05/07/2008 02:41:52 AM)

Hi all,

I was wondering if anyone could help me with calling the Notes C API function ldap_get_dn from LotusScript. It returns a pointer to a null terminated string (LMBCS i assume) if successful, or null if not successful. Also I need the pointer to free up the memory being used by the string using ldap_memfree. I have no idea how long the string is, or what its maximum size could be. This is vaguely how I expect to proceed.

1. Get the pointer, ptr = ldap_get_dn(ld, entry)

2. If ptr = 0 stop and report error

3. Find out the length of the LMBCS string in characters (not bytes) using some function which looks for the null.

4. Allocate a lotusscript string that is big enough to hold it using the value derived in step 3 above.

5. Copy/Translate the LBMCS string to the LotusScript unicode string.

6. Free up the original memory using ldap_memfree(ptr)

I know how to do steps 1, 2, 4, 6, but I need help with steps 3 and 5. Assuming my logic is correct of course.

cheers

Jim