openMSX
SspiNegotiateServer.hh
Go to the documentation of this file.
1#ifndef SSPI_NEGOTIATE_SERVER_HH
2#define SSPI_NEGOTIATE_SERVER_HH
3
4#ifdef _WIN32
5
6#include "SspiUtils.hh"
7
8namespace openmsx {
9
10class SspiNegotiateServer : public sspiutils::SspiPackageBase
11{
12public:
13 explicit SspiNegotiateServer(sspiutils::StreamWrapper& serverStream);
14 ~SspiNegotiateServer();
15
16 bool Authenticate();
17 bool Authorize();
18
19private:
20 PSECURITY_DESCRIPTOR psd;
21};
22
23} // namespace openmsx
24
25#endif // _WIN32
26
27#endif // SSPI_NEGOTIATE_SERVER_HH
This file implemented 3 utility functions:
Definition Autofire.cc:11