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.

26 lines
1.0 KiB

  1. /* GetSecurityInfo() looks up security information for the specified node/app
  2. app/topic and returns the appropriate action
  3. */
  4. VOID GetSecurityInfo( LPSTR lpszFromNode, LPSTR lpszFromApp,
  5. LPSTR lpszToApp, LPSTR lpszToTopic,
  6. BOOL FAR *pbAllow, BOOL FAR *pbStart,
  7. LPSTR lpszCmdLine, int nMaxCmdLine,
  8. BOOL FAR *pbAdvise, BOOL FAR *pbRequest,
  9. BOOL FAR *pbPoke, BOOL FAR *pbExecute );
  10. /* GetRoutingInfo() looks up routing information for the specified node and
  11. returns whether an entry was found or not
  12. */
  13. BOOL GetRoutingInfo( LPSTR lpszNodeName, LPSTR lpszRouteInfo,
  14. int nMaxRouteInfo, BOOL FAR *pbDisconnect, int FAR *nDelay );
  15. /* GetConnectionInfo() looks up connection information for
  16. the specified node and returns whether an entry was found or not
  17. */
  18. BOOL GetConnectionInfo( LPSTR lpszNodeName, LPSTR lpszNetIntf,
  19. LPSTR lpszConnInfo, int nMaxConnInfo,
  20. BOOL FAR *pbDisconnect, int FAR *nDelay );
  21. BOOL ValidateSecurityInfo( void );
  22. BOOL ValidateRoutingInfo( void );
  23. BOOL ValidateConnectionInfo( void );