DECLARE_HANDLE

3.1

DECLARE_HANDLE(name)

The DECLARE_HANDLE macro creates a data type that can be used to define 16-bit handles.

Parameters

name

Specifies the name of the new data type.

Comments

The DECLARE_HANDLE macro is defined in WINDOWS.H as follows:

#define DECLARE_HANDLE(name) struct name##__ { int unused; }; \
                             typedef const struct name##__ NEAR* name

See Also

DECLARE_HANDLE32