Please let me know How to get current Unix timestamp in Inno Setup?
feedback
|
|
The easiest way is to use the
which is exactly what the unix timestamp is. Now it's a simple matter of importing that function into Inno Setup scripting. Since the scripting environment doesn't know pointers the parameter (which luckily need not point to a valid buffer, see the linked documentation) is given as integer and you must pass a 0 for it:
| |||
|
feedback
|