I have limited C++ experience, and the meaning of the following escapes me:
fClient ? CRYPT_SERVER : 0,
fClient ? 0 : CRYPT_SERVER,
These are variables in a system call, fClient is a Boolean value (True/False), and CRYPT_SERVER is a constant.
J.A. Coutts
fClient ? CRYPT_SERVER : 0,
fClient ? 0 : CRYPT_SERVER,
These are variables in a system call, fClient is a Boolean value (True/False), and CRYPT_SERVER is a constant.
J.A. Coutts