Share via


OEMBootNotify Function (Compact 2013)

3/26/2014

OEMBootNotify is the primary means of all communication with the user. For example, you can use it to inform the user when the OS image has finished downloading to the device.

This function is implemented in:

%_WINCEROOT%\Platform\<BSP Name>\ Src\Boot\Bldr\Notify.c

Its syntax is:

void OEMBootNotify (
   void *pContext,
   enum_t notifyCode,
   void *pNotifyInfo,
   size_t notifyInfoSize
);

OEMBootNotify Function Input Parameters

Parameter

Type

Description

pContext

void *

A pointer to the boot loader’s BootLoader_t structure.

notifyCode

enum_t

The event that has occurred.

pNotifyInfo

void *

A pointer to information that pertains to the notification.

notifyInfoSize

size_t

The size of the information that pertains to the notification.

This function does not return a value.

See Also

Concepts

Notification Code