|
From: <ped...@us...> - 2008-10-07 17:03:08
|
Revision: 1199
http://cegcc.svn.sourceforge.net/cegcc/?rev=1199&view=rev
Author: pedroalves
Date: 2008-10-07 17:03:04 +0000 (Tue, 07 Oct 2008)
Log Message:
-----------
* include/secext.h (EXTENDED_NAME_FORMAT): Allow on _WIN32_WCE >=
0x400. Add NameWindowsCeLocal on CE and hide NameDnsDomain.
Modified Paths:
--------------
trunk/cegcc/src/w32api/ChangeLog.ce
trunk/cegcc/src/w32api/include/secext.h
Modified: trunk/cegcc/src/w32api/ChangeLog.ce
===================================================================
--- trunk/cegcc/src/w32api/ChangeLog.ce 2008-10-05 14:52:09 UTC (rev 1198)
+++ trunk/cegcc/src/w32api/ChangeLog.ce 2008-10-07 17:03:04 UTC (rev 1199)
@@ -1,3 +1,8 @@
+2008-10-07 Pedro Alves <ped...@us...>
+
+ * include/secext.h (EXTENDED_NAME_FORMAT): Allow on _WIN32_WCE >=
+ 0x400. Add NameWindowsCeLocal on CE and hide NameDnsDomain.
+
2008-10-05 Pedro Alves <ped...@us...>
* include/shellapi.h (SHCreateShortcut): Change return type to
Modified: trunk/cegcc/src/w32api/include/secext.h
===================================================================
--- trunk/cegcc/src/w32api/include/secext.h 2008-10-05 14:52:09 UTC (rev 1198)
+++ trunk/cegcc/src/w32api/include/secext.h 2008-10-07 17:03:04 UTC (rev 1199)
@@ -10,7 +10,7 @@
#endif
#ifndef RC_INVOKED
-#if (_WIN32_WINNT >= 0x0500)
+#if (_WIN32_WINNT >= 0x0500) || (_WIN32_WCE >= 0x0400)
typedef enum
{
NameUnknown = 0,
@@ -21,8 +21,12 @@
NameCanonical = 7,
NameUserPrincipal = 8,
NameCanonicalEx = 9,
- NameServicePrincipal = 10,
+ NameServicePrincipal = 10,
+#ifdef _WIN32_WCE
+ NameWindowsCeLocal = 0x80000001
+#else
NameDnsDomain = 12
+#endif
} EXTENDED_NAME_FORMAT, *PEXTENDED_NAME_FORMAT;
BOOLEAN WINAPI GetComputerObjectNameA(EXTENDED_NAME_FORMAT,LPSTR,PULONG);
@@ -43,7 +47,7 @@
#endif
#endif /* ! RC_INVOKED */
-#endif /* _WIN32_WINNT >= 0x0500 */
+#endif /* _WIN32_WINNT >= 0x0500 || _WIN32_WCE >= 0x0400 */
#ifdef __cplusplus
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|