mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
16 lines
378 B
C
16 lines
378 B
C
|
#ifndef __BACKSQL_ENTRYID_H__
|
||
|
#define __BACKSQL_ENTRYID_H__
|
||
|
|
||
|
typedef struct __backsql_entryID
|
||
|
{
|
||
|
unsigned long id;
|
||
|
unsigned long keyval;
|
||
|
unsigned long oc_id;
|
||
|
char *dn;
|
||
|
struct __backsql_entryID *next;
|
||
|
}backsql_entryID;
|
||
|
|
||
|
backsql_entryID* backsql_dn2id(backsql_entryID* id,SQLHDBC dbh,char *dn);
|
||
|
backsql_entryID* backsql_free_entryID(backsql_entryID* id);//returns next
|
||
|
|
||
|
#endif
|