Changes between Initial Version and Version 1 of Ticket #2326, comment 1
- Timestamp:
- 03/18/13 08:22:34 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2326, comment 1
initial v1 3 3 {{{ 4 4 Local $aRes = DllCall("comdlg32.dll", "bool", "GetSaveFileNameW", "struct*", $tOFN) ; Correction #1 - Added "Local $aRes =" 5 If @error Or Not $aRet[0] Then Return SetError(@error + 10, @extended, $aFiles) 6 }}} ; Correction 2 5 If @error Or Not $aRet[0] Then Return SetError(@error + 10, @extended, $aFiles) ; Correction 2 6 }}} 7 7 8 It will leave the caller script the decisio to call to_WinAPI_CommDlgExtendedError() as your reproscript is doing. 8 9