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 には特別な「イースターエッグ」モードがあり、設定パネルの 1 つで正しいジェスチャーを行うことで有効になります。現在の Palm Treo および Centro デバイスでは、電源パネルの [ヒント] ボタンの上で時計回りに回転させることでオンにできます。
Blazer Web ブラウザーなどの一部のアプリケーションは、イースターエッグがアクティブなときに特別な機能を有効にします。自分のプログラムでこれを検出するにはどうすればよいですか?
このための標準のシステム設定はprefAllowEasterEggsです(Preference.hを参照)。この設定には、PrefGetPreferenceAPIを使用してアクセスできます。
UInt32 enableEasterEggs = PrefGetPreference(prefAllowEasterEggs);
ユーザーがイースターエッグを利用できるように要求した場合、値はゼロ以外になります。