Source code of Windows XP (NT5)
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.
|
|
/* GetSecurityInfo() looks up security information for the specified node/app
app/topic and returns the appropriate action */ VOID GetSecurityInfo( LPSTR lpszFromNode, LPSTR lpszFromApp, LPSTR lpszToApp, LPSTR lpszToTopic, BOOL FAR *pbAllow, BOOL FAR *pbStart, LPSTR lpszCmdLine, int nMaxCmdLine, BOOL FAR *pbAdvise, BOOL FAR *pbRequest, BOOL FAR *pbPoke, BOOL FAR *pbExecute );
/* GetRoutingInfo() looks up routing information for the specified node and
returns whether an entry was found or not */ BOOL GetRoutingInfo( LPSTR lpszNodeName, LPSTR lpszRouteInfo, int nMaxRouteInfo, BOOL FAR *pbDisconnect, int FAR *nDelay );
/* GetConnectionInfo() looks up connection information for
the specified node and returns whether an entry was found or not */ BOOL GetConnectionInfo( LPSTR lpszNodeName, LPSTR lpszNetIntf, LPSTR lpszConnInfo, int nMaxConnInfo, BOOL FAR *pbDisconnect, int FAR *nDelay );
BOOL ValidateSecurityInfo( void ); BOOL ValidateRoutingInfo( void ); BOOL ValidateConnectionInfo( void );
|