2002-07-21 Bart Oldeman <bart.oldeman@btinternet.com>
* include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus character. * include/winsock2.h (struct sockaddr): Use __int64 instead of long long. * include/kernel32.c (GetCurrentFiber, GetFiberData): Watcom does not need external library functions.
This commit is contained in:
parent
5ec1dcc5bf
commit
9e35380b5a
|
@ -1,3 +1,12 @@
|
|||
2002-07-21 Bart Oldeman <bart.oldeman@btinternet.com>
|
||||
|
||||
* include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
|
||||
character.
|
||||
* include/winsock2.h (struct sockaddr): Use __int64 instead of
|
||||
long long.
|
||||
* include/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
|
||||
does not need external *Fiber library functions.
|
||||
|
||||
2002-07-20 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||
|
||||
* include/winbase.h (GetEnvironmentStringsA): Remove duplicate
|
||||
|
|
|
@ -216,7 +216,7 @@ extern "C" {
|
|||
#define FCIDM_MENU_HELP (FCIDM_GLOBALFIRST+0x0100)
|
||||
#define FCIDM_MENU_FIND (FCIDM_GLOBALFIRST+0x0140)
|
||||
#define FCIDM_MENU_EXPLORE (FCIDM_GLOBALFIRST+0x0150)
|
||||
#define FCIDM_MENU_FAVORITES (FCIDM_GLOBALFIRST+0x0170)
|
||||
#define FCIDM_MENU_FAVORITES (FCIDM_GLOBALFIRST+0x0170)
|
||||
#define FCIDM_TOOLBAR FCIDM_BROWSERFIRST
|
||||
#define FCIDM_STATUS (FCIDM_BROWSERFIRST+1)
|
||||
#define SBSP_DEFBROWSER 0
|
||||
|
|
|
@ -333,7 +333,7 @@ struct sockaddr {
|
|||
struct sockaddr_storage {
|
||||
short ss_family;
|
||||
char __ss_pad1[6]; /* pad to 8 */
|
||||
long long __ss_align; /* force alignment */
|
||||
__int64 __ss_align; /* force alignment */
|
||||
char __ss_pad2[112]; /* pad to 128 */
|
||||
};
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ void* GetFiberData(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
#else
|
||||
#elif !defined (__WATCOMC__)
|
||||
|
||||
void* GetCurrentFiber(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue