You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.2 KiB
107 lines
3.2 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1992, Microsoft Corporation
|
|
//
|
|
// File: DfsGluon.h
|
|
//
|
|
// Contents: Declarations for dfs use of gluons
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: March 24, 1994 Milans Created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
#ifndef _DFS_GLUON_
|
|
#define _DFS_GLUON_
|
|
|
|
#include <gluon.h>
|
|
|
|
//
|
|
// Marshalling info for TAddress
|
|
//
|
|
|
|
extern MARSHAL_INFO MiTAddress;
|
|
|
|
#define INIT_TADDRESS_MARSHAL_INFO() \
|
|
static MARSHAL_TYPE_INFO _MCode_TAddress[] = { \
|
|
_MCode_conformant(TA_ADDRESS, Address, AddressLength), \
|
|
_MCode_ush(TA_ADDRESS, AddressLength), \
|
|
_MCode_ush(TA_ADDRESS, AddressType), \
|
|
_MCode_cauch(TA_ADDRESS, Address, AddressLength) \
|
|
}; \
|
|
MARSHAL_INFO MiTAddress = _mkMarshalInfo(TA_ADDRESS, _MCode_TAddress);
|
|
|
|
//
|
|
// Marshalling info for DS_TRANSPORT
|
|
//
|
|
|
|
extern MARSHAL_INFO MiDSTransport;
|
|
|
|
#define INIT_DS_TRANSPORT_MARSHAL_INFO() \
|
|
static MARSHAL_TYPE_INFO _MCode_DSTransport[] = { \
|
|
_MCode_conformant(DS_TRANSPORT, taddr.Address, taddr.AddressLength), \
|
|
_MCode_ush(DS_TRANSPORT, usFileProtocol), \
|
|
_MCode_ush(DS_TRANSPORT, iPrincipal), \
|
|
_MCode_ush(DS_TRANSPORT, grfModifiers), \
|
|
_MCode_struct(DS_TRANSPORT, taddr, &MiTAddress) \
|
|
}; \
|
|
MARSHAL_INFO MiDSTransport = _mkMarshalInfo(DS_TRANSPORT, _MCode_DSTransport);
|
|
|
|
|
|
//
|
|
// The following is needed to define an array of pointers to DS_TRANSPORT
|
|
//
|
|
|
|
typedef struct _DS_TRANSPORT_P {
|
|
PDS_TRANSPORT pDSTransport;
|
|
} DS_TRANSPORT_P;
|
|
|
|
#define INIT_DS_TRANSPORT_P_MARSHAL_INFO() \
|
|
static MARSHAL_TYPE_INFO _MCode_DSTransportP[] = { \
|
|
_MCode_pstruct(DS_TRANSPORT_P, pDSTransport, &MiDSTransport) \
|
|
}; \
|
|
MARSHAL_INFO MiDSTransportP = _mkMarshalInfo(DS_TRANSPORT_P, _MCode_DSTransportP);
|
|
|
|
extern MARSHAL_INFO MiDSTransportP;
|
|
|
|
//
|
|
// Marshalling info for DS_MACHINE
|
|
//
|
|
|
|
extern MARSHAL_INFO MiDSMachine;
|
|
|
|
#define INIT_DS_MACHINE_MARSHAL_INFO() \
|
|
static MARSHAL_TYPE_INFO _MCode_DSMachine[] = { \
|
|
_MCode_conformant(DS_MACHINE, rpTrans, cTransports), \
|
|
_MCode_guid(DS_MACHINE, guidSite), \
|
|
_MCode_guid(DS_MACHINE, guidMachine), \
|
|
_MCode_ul(DS_MACHINE, grfFlags), \
|
|
_MCode_pwstr(DS_MACHINE, pwszShareName), \
|
|
_MCode_ul(DS_MACHINE, cPrincipals), \
|
|
_MCode_pcapwstr(DS_MACHINE, prgpwszPrincipals, cPrincipals), \
|
|
_MCode_ul(DS_MACHINE, cTransports), \
|
|
_MCode_castruct(DS_MACHINE, rpTrans, cTransports, &MiDSTransportP) \
|
|
}; \
|
|
MARSHAL_INFO MiDSMachine = _mkMarshalInfo(DS_MACHINE, _MCode_DSMachine);
|
|
|
|
//
|
|
// The following is needed to define an array of pointers to DS_MACHINE
|
|
//
|
|
|
|
typedef struct _DS_MACHINE_P {
|
|
PDS_MACHINE pDSMachine;
|
|
} DS_MACHINE_P;
|
|
|
|
#define INIT_DS_MACHINE_P_MARSHAL_INFO() \
|
|
static MARSHAL_TYPE_INFO _MCode_DSMachineP[] = { \
|
|
_MCode_pstruct(DS_MACHINE_P, pDSMachine, &MiDSMachine) \
|
|
}; \
|
|
MARSHAL_INFO MiDSMachineP = _mkMarshalInfo(DS_MACHINE_P, _MCode_DSMachineP);
|
|
|
|
extern MARSHAL_INFO MiDSMachineP;
|
|
|
|
#endif // _DFS_GLUON_
|