LotusScript to C API Programming Guide
rtLib Domino Rich Text Management template
Home

Anonymous

login


 

Hosted by Prominic.NET, Inc.

HANDLE

#include <global.h>

General definition for handles used by Domino and Notes.

C definition

#if defined(DOSW16)
  typedef unsigned int HANDLE;  /* really a short, but compiler is picky */
#elif defined(HANDLE_IS_32BITS)
  typedef unsigned int HANDLE;  /* 32-bit HANDLEs */
#else
  typedef unsigned short HANDLE;
#endif


LotusScript

Definition(s)