我正在使用 C++ win32 API ...
我有这些价值观。
pwdlastset 日期(例如:25-9-2012),当前日期(例如:1-11-2012),maxpwdage 计数(例如 54 天) pwdwarningdays(14 天)...
现在我想计算密码到期日...
我尝试了下面的代码...
if(lastpwdchmon==currentMonth)
{
lCount=currentDay-lastpwdchday;
}
else if(lastpwdchmon<currentMonth)
{
lCount=((currentDay+30)-lastpwdchday);
}
但是,我有一个问题...
我的意思是,我只需要计算当前日期和 pwdlastset 日期之间的天数?
如何做到这一点?