Alexandre Julliard wrote:
> This one is not in an API structure so it should be made const.
>
Thanks, Alexandre. I have posted a revised version, accordingly.
-- Andy.
Andrew Talbot <[EMAIL PROTECTED]> writes:
> @@ -421,7 +431,7 @@
> *s=':';
> pent = s;
> } else
> -pent = "";
> +pent = empty;
This one is not in an API structure so it should be made const.
--
Alexandre Julliard
[EMAIL PROTECTED]
Andrew Talbot wrote:
> Changelog:
> winspool.drv: Write-strings warnings fix.
The touched parts should call the UNICODE-Functions instead of the
ANSI-Functions.
That's on my ToDo-List, but after the Port-Functions are fixed.
Many tests for the affected Functions also needs to
Mike McCormack wrote:
> These strings should really be const. IMO, a better fix would be to add
> a cast to cast them back to (char*) than to change their storage class.
>
The trouble is, if you leave them as they were, you get a write-strings
warning, since you are pointing a writeable pointer a
Andrew Talbot wrote:
+static CHAR dtype[] = "RAW",
+processor[] = "WinPrint",
These strings should really be const. IMO, a better fix would be to add
a cast to cast them back to (char*) than to change their storage class.
Mike