请问一下:WINCE点的开始菜单上的挂起时,会调用BSP里面的哪个函数呀?也就是挂起是通过哪个函数实现的呀?谢谢呀
The other way of application suspension is to use undocumented PowerOffSystem() function. As this function is undocumented I can't make any assumptions abut support of this function in different devices or operating system versions. In order to use this function place following function declaration into your source code:
extern "C" __declspec(dllimport) void PowerOffSystem();
SetSystemPowerState(NULL,POWER_STATE_SUSPEND,1);//执行挂起操作
当然是OEMPowerOff()了,但我如果要在挂起后,做个关机动画,请教各位达人,有哪些实现方法呢