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.
33 lines
470 B
33 lines
470 B
/*++
|
|
|
|
Copyright(c) 1995 Microsoft Corporation
|
|
|
|
MODULE NAME
|
|
rasrpclb.h
|
|
|
|
ABSTRACT
|
|
Header file for rasrpc client/server common routines
|
|
|
|
AUTHOR
|
|
Anthony Discolo (adiscolo) 10-Sep-1996
|
|
|
|
REVISION HISTORY
|
|
|
|
--*/
|
|
|
|
#ifndef _RASRPCLIB_H
|
|
#define _RASRPCLIB_H
|
|
|
|
DWORD
|
|
RasToRpcPbuser(
|
|
LPRASRPC_PBUSER pUser,
|
|
PBUSER *pPbuser
|
|
);
|
|
|
|
DWORD
|
|
RpcToRasPbuser(
|
|
PBUSER *pPbuser,
|
|
LPRASRPC_PBUSER pUser
|
|
);
|
|
|
|
#endif // _RASRPCLIB_H
|