CM_CONFIG_CHANGE_HANDLE (Compact 2013)
3/26/2014
This data type represents an instance of a configuration that is being updated.
Syntax
DECLARE_HANDLE(CM_CONFIG_CHANGE_HANDLE);
Remarks
DECLARE_HANDLE is defined in winnt.h as:
#define DECLARE_HANDLE(name) struct name##__ { int unused; }; typedef struct name##__ *name
This implies that if a variable such as hconfig, is of type CM_CONFIG_CHANGE_HANDLE, as in:
CM_CONFIG_CHANGE_HANDLE hconfig;
hconfig is actually of the type:
struct CM_CONFIG_CHANGE_HANDLE__ { int unused; } *
which is different than HANDLE, which is defined in winnt.h as:
typedef void *HANDLE;
Requirements
Header |
cmnet.h |
Library |
cmnet.lib |