WCMNotice

Definitions


#include <nitroWiFi/wcm.h>

typedef struct
{
s16     notify;
s16     result;
union
    {
s32     n;
void*   p;

}       parameter[3];

} WCMNotice;
				

Description

Structure that shows the details of the notification that is passed to the WCM library's notification function, which is of the WCMNotify type. It includes notification type, process result code, and detail parameter.

Elements

notify Stores the process type that caused the notification. For details, see WCM library constants.
result Stores the result of the process that was executed automatically and asynchronously inside the library. For details, see WCM library constants.
parameter This stores parameters used for debugging. When using the WCM library, there is no need to be concerned about this.
Note that parameter[2] stores the part that caused the notification to be issued as the line number in the source code (system.c).

See Also

WCMNotify

Revision History

07/22/2005 Initial version.