oleaut32: Cast-qual warnings fix.

oldstable
Andrew Talbot 2006-09-21 21:25:39 +01:00 committed by Alexandre Julliard
parent d456e9f49f
commit 0e9c97eba3
2 changed files with 4 additions and 4 deletions

View File

@ -332,10 +332,10 @@ HRESULT WINAPI OleCreateFontIndirect(
if (!lpFontDesc) {
FONTDESC fd;
static const WCHAR fname[] = { 'S','y','s','t','e','m',0 };
static WCHAR fname[] = { 'S','y','s','t','e','m',0 };
fd.cbSizeofstruct = sizeof(fd);
fd.lpstrName = (WCHAR*)fname;
fd.lpstrName = fname;
fd.cySize.s.Lo = 80000;
fd.cySize.s.Hi = 0;
fd.sWeight = 0;

View File

@ -611,14 +611,14 @@ HRESULT WINAPI RegisterTypeLib(
if (RegCreateKeyExW(key, ProxyStubClsidW, 0, NULL, 0,
KEY_WRITE, NULL, &subKey, NULL) == ERROR_SUCCESS) {
RegSetValueExW(subKey, NULL, 0, REG_SZ,
(BYTE*)PSOA, sizeof PSOA);
(const BYTE *)PSOA, sizeof PSOA);
RegCloseKey(subKey);
}
if (RegCreateKeyExW(key, ProxyStubClsid32W, 0, NULL, 0,
KEY_WRITE, NULL, &subKey, NULL) == ERROR_SUCCESS) {
RegSetValueExW(subKey, NULL, 0, REG_SZ,
(BYTE*)PSOA, sizeof PSOA);
(const BYTE *)PSOA, sizeof PSOA);
RegCloseKey(subKey);
}