Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从早期开始,Palm OS 就有一种特殊的“复活节彩蛋”模式,可以通过在其中一个 Preference 面板中做出正确的手势来启用该模式。在当前的 Palm Treo 和 Centro 设备上,这是通过在电源面板中的“提示”按钮上方顺时针旋转来打开的。
某些应用程序(例如 Blazer 网络浏览器)会在复活节彩蛋活动时启用特殊功能。如何在我自己的程序中检测到这一点?
对此的标准系统首选项是 prefAllowEasterEggs(参见 Preference.h)。可以使用 PrefGetPreference API 访问此设置:
UInt32 enableEasterEggs = PrefGetPreference(prefAllowEasterEggs);
当用户请求复活节彩蛋可用时,该值将非零。