LotusScript to C API Programming Guide

rtLib Domino Rich Text Management template
Home
Show details for ContentContent
Purchase
Ready-to-use samples
Show details for Online resourcesOnline resources
Forum
Links
Happy readers

Anonymous

login


 

Hosted by Prominic.NET, Inc.
Main topic: ldap_search_s

ldap_search_s (by Normunds Kalnberzins, 06/04/2005 06:17:51 AM)

I never tried to do aynthing with LDAP functions, but I think here you never need to use the structure itself. In your code you rather declare it as pointer to the structure; in C:

LDAP *ld;

You get this value, pass to other functions but never directly manipulate the content of the structure.

So I assume you'll declare it in LS "As Long" and in declarations of function calls pass it as pointer "byVal".