From: <dan...@us...> - 2006-11-28 23:20:35
|
Revision: 834 http://svn.sourceforge.net/cegcc/?rev=834&view=rev Author: dannybackx Date: 2006-11-28 15:20:32 -0800 (Tue, 28 Nov 2006) Log Message: ----------- Add some more macros, required for the examples in the Boling book. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/aygshell.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-28 13:18:45 UTC (rev 833) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-28 23:20:32 UTC (rev 834) @@ -1,3 +1,11 @@ +2006-11-28 Danny Backx <dan...@us...> + + * include/aygshell.h (IDM_SHAREDNEW, IDM_SHAREDNEWDEFAULT) : Define. + + * include/aygshell.h (NOMENU) : Define. + + * include/aygshell.h (IDS_SH*) : Define, values from the Boling book. + 2006-11-26 Kevin O'Connor <ke...@ko...> * include/winbase.h: Add SYSTEM_POWER_STATUS_EX2 structure. Modified: trunk/cegcc/src/w32api/include/aygshell.h =================================================================== --- trunk/cegcc/src/w32api/include/aygshell.h 2006-11-28 13:18:45 UTC (rev 833) +++ trunk/cegcc/src/w32api/include/aygshell.h 2006-11-28 23:20:32 UTC (rev 834) @@ -104,6 +104,38 @@ #define IDM_NEWMENUMAX 3000 +/* + * The Shared New menu + * + * See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceui40/html/_ceconnewbutton.asp + * + * Values from several sources are identical + * ftp://ftp.berlios.de/pub/pocketsipmsg/PocketSM-0.7.5-src.tar.gz + * http://www.huihoo.com/doxygen/vlc/html/newres_8h-source.html + * http://www.ee.umd.edu/courses/enee408g.S2002/report/group4/Final/Video/PocketPC/NEWRES.H + */ +#define IDM_SHAREDNEW 10 +#define IDM_SHAREDNEWDEFAULT 11 + +/* + * http://msdn2.microsoft.com/en-us/library/aa457781.aspx + * http://www.ee.umd.edu/courses/enee408g.S2002/report/group4/Final/Video/PocketPC/NEWRES.H + * + */ +#define NOMENU 0xFFFF + +/* + * These are in the Boling book + */ +#define IDS_SHNEW 1 +#define IDS_SHEDIT 2 +#define IDS_SHTOOLS 3 +#define IDS_SHVIEW 4 +#define IDS_SHFILE 5 +#define IDS_SHGO 6 +#define IDS_SHFAVORITES 7 +#define IDS_SHOPEN 8 + /* Values for npPriority */ typedef enum { SHNP_INFORM = 0x1b1, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |