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.
32 lines
764 B
32 lines
764 B
//
|
|
// security.h
|
|
//
|
|
// Implementation of CTSSecurity
|
|
// TS Client Shell Security functions
|
|
//
|
|
// Copyright(C) Microsoft Corporation 2001
|
|
// Author: Nadim Abdo (nadima)
|
|
//
|
|
//
|
|
|
|
#ifndef _TSSECURITY_H_
|
|
#define _TSSECURITY_H_
|
|
|
|
#include "tscsetting.h"
|
|
|
|
class CTSSecurity
|
|
{
|
|
public:
|
|
CTSSecurity();
|
|
~CTSSecurity();
|
|
static DWORD MakePromptFlags(BOOL fRedirectDrives,
|
|
BOOL fRedirectPorts);
|
|
|
|
static BOOL AllowConnection(HWND hwndOwner,
|
|
HINSTANCE hInstance,
|
|
LPCTSTR szServer,
|
|
BOOL fRedirectDrives,
|
|
BOOL fRedirectPorts);
|
|
};
|
|
|
|
#endif _TSSECURITY_H_
|