35 lines
656 B
C
35 lines
656 B
C
|
/*++
|
|||
|
|
|||
|
Copyright (c) 1994 Microsoft Corporation
|
|||
|
|
|||
|
Module Name:
|
|||
|
|
|||
|
spxinfo.h
|
|||
|
|
|||
|
Abstract:
|
|||
|
|
|||
|
Common constants, etc, for SPX service location
|
|||
|
|
|||
|
Author:
|
|||
|
|
|||
|
Richard L Firth (rfirth) 18-Sep-1995
|
|||
|
|
|||
|
Revision History:
|
|||
|
|
|||
|
18-Sep-1995 rfirth
|
|||
|
Created
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
#if !defined(_SPXINFO_)
|
|||
|
#define _SPXINFO_
|
|||
|
|
|||
|
#define INTERNET_SERVICE_SAP_ID 0x64e
|
|||
|
#define GATEWAY_SERVER_SECURITY_NAME "GatewayServerApp"
|
|||
|
#define GATEWAY_SERVER_SECURITY L"GatewayServerApp"
|
|||
|
#define GATEWAY_SERVER_SECURITY_AUTH_ID 10
|
|||
|
#define GATEWAY_SERVER_PORT_TEXT "47"
|
|||
|
#define GATEWAY_SERVER_PORT L"47"
|
|||
|
|
|||
|
#endif // _SPXINFO_
|
|||
|
|