we have written a custom application that sits on top of Notes. however wherever i try to initialize it using
NIFNSFInitialize(); it fails.
STATUS CNotesApi::NIFNSFInitialize(void)
{
STATUS Status = ERR_NOT_INITIALIZED;
if (toinitilized)
{
if (1)
{
if (mythread == GetCurrentThreadId())
{
Status = (*NIFNSFInitialize)();
}
else
{
NotesInitThread();
Status = (*NIFNSFInitialize)();
NotesTermThread();
}
}
else
{
Status = ERR_NOT_EXPORTED;
}
}
return Status;
}

