Add 10 days to a date
Hi,
I use the following code to get the current date:
System::Alloc 128
Pop $0
System::Call "Kernel32::GetSystemTime(i) v (r0)"
System::Call "*$0(&i2 .r1, &i2 .r2, &i2 .r3, &i2 .r4, \
&i2 .r5, &i2 .r6, &i2 .r7, &i2 .r8)"
System::Free $0
After that, I use the variable $1, $2 and $4 to use the current day month and year in my setup.
Do you know how I can add 10 days to the current date before parsing it in day/month/year?