diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-08-26 23:33:17 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-08-26 23:33:17 +0000 |
commit | 4854ee501ebdb755be22392f8552a05284263a65 (patch) | |
tree | 54fc663ed6f96d7874b7ad995be36b6fdb9720a7 /winsup/w32api/include/svcguid.h | |
parent | eac48e7ecfee5ca30d573714facd4b4bd0c1d13a (diff) | |
download | cygnal-4854ee501ebdb755be22392f8552a05284263a65.tar.gz cygnal-4854ee501ebdb755be22392f8552a05284263a65.tar.bz2 cygnal-4854ee501ebdb755be22392f8552a05284263a65.zip |
2002-08-26 Bart Oldeman <bart.oldeman@btinternet.com>
* include/winsock2.h (SOCKET_ADDRESS): Define if
__CSADDR_T_DEFINED is not defined (copied from nspapi.h)
(CSADDR_INFO): Ditto.
(nspapi.h) : Don't include. Removed FIXME comment.
* include/nspapi.h (SOCKET_ADDRESS) Only define if
__CSADDR_T_DEFINED is not defined.
(CSADDR_INFO): Ditto.
(BLOB): Added structure and typedef if not already defined.
(NS_*): Add defines.
(SERVICE_*): Ditto.
(SERVICE_ADDRESS): Add structure and typedefs.
(SERVICE_ADDRESSES): Ditto.
(SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
(LPSERVICE_ASYNC_INFO): Add typedef.
(SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
mappings.
* include/wsipx.h: New file.
* include/svcguid.h: New file.
* lib/test.c: Include wspix.h and svcguid.h.
Diffstat (limited to 'winsup/w32api/include/svcguid.h')
-rw-r--r-- | winsup/w32api/include/svcguid.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/winsup/w32api/include/svcguid.h b/winsup/w32api/include/svcguid.h new file mode 100644 index 000000000..65072808c --- /dev/null +++ b/winsup/w32api/include/svcguid.h @@ -0,0 +1,33 @@ +#ifndef _SVCGUID_H +#define _SVCGUID_H +#if __GNUC__ >=3 +#pragma GCC system_header +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#define SVCID_NETWARE(_SapId) \ + { (0x000B << 16) | (_SapId), 0, 0, { 0xC0,0,0,0,0,0,0,0x46 } } + +#define SAPID_FROM_SVCID_NETWARE(_g) \ + ((WORD)(_g->Data1 & 0xFFFF)) + +#define SET_NETWARE_SVCID(_g,_SapId) { \ + (_g)->Data1 = (0x000B << 16 ) | (_SapId); \ + (_g)->Data2 = 0; \ + (_g)->Data3 = 0; \ + (_g)->Data4[0] = 0xC0; \ + (_g)->Data4[1] = 0x0; \ + (_g)->Data4[2] = 0x0; \ + (_g)->Data4[3] = 0x0; \ + (_g)->Data4[4] = 0x0; \ + (_g)->Data4[5] = 0x0; \ + (_g)->Data4[6] = 0x0; \ + (_g)->Data4[7] = 0x46; } + +#ifdef __cplusplus +} +#endif +#endif |