2 * Setupapi miscellaneous functions
4 * Copyright 2005 Eric Kohl
5 * Copyright 2007 Hans Leidekker
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
36 #include "wine/debug.h"
38 #include "setupapi_private.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(setupapi
);
42 /* arbitrary limit not related to what native actually uses */
43 #define OEM_INDEX_LIMIT 999
45 /* Handles and critical sections for the SetupLog API */
46 static HANDLE setupact
= INVALID_HANDLE_VALUE
;
47 static HANDLE setuperr
= INVALID_HANDLE_VALUE
;
48 static CRITICAL_SECTION setupapi_cs
;
49 static CRITICAL_SECTION_DEBUG critsect_debug
=
52 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
53 0, 0, { (DWORD_PTR
)(__FILE__
": setupapi_cs") }
55 static CRITICAL_SECTION setupapi_cs
= { &critsect_debug
, -1, 0, 0, 0, 0 };
57 /**************************************************************************
60 * Frees an allocated memory block from the process heap.
63 * lpMem [I] pointer to memory block which will be freed
68 VOID WINAPI
MyFree(LPVOID lpMem
)
70 HeapFree(GetProcessHeap(), 0, lpMem
);
74 /**************************************************************************
75 * MyMalloc [SETUPAPI.@]
77 * Allocates memory block from the process heap.
80 * dwSize [I] size of the allocated memory block
83 * Success: pointer to allocated memory block
86 LPVOID WINAPI
MyMalloc(DWORD dwSize
)
88 return HeapAlloc(GetProcessHeap(), 0, dwSize
);
92 /**************************************************************************
93 * MyRealloc [SETUPAPI.@]
95 * Changes the size of an allocated memory block or allocates a memory
96 * block from the process heap.
99 * lpSrc [I] pointer to memory block which will be resized
100 * dwSize [I] new size of the memory block
103 * Success: pointer to the resized memory block
107 * If lpSrc is a NULL-pointer, then MyRealloc allocates a memory
108 * block like MyMalloc.
110 LPVOID WINAPI
MyRealloc(LPVOID lpSrc
, DWORD dwSize
)
113 return HeapAlloc(GetProcessHeap(), 0, dwSize
);
115 return HeapReAlloc(GetProcessHeap(), 0, lpSrc
, dwSize
);
119 /**************************************************************************
120 * DuplicateString [SETUPAPI.@]
122 * Duplicates a unicode string.
125 * lpSrc [I] pointer to the unicode string that will be duplicated
128 * Success: pointer to the duplicated unicode string
132 * Call MyFree() to release the duplicated string.
134 LPWSTR WINAPI
DuplicateString(LPCWSTR lpSrc
)
138 lpDst
= MyMalloc((lstrlenW(lpSrc
) + 1) * sizeof(WCHAR
));
142 lstrcpyW(lpDst
, lpSrc
);
148 /**************************************************************************
149 * QueryRegistryValue [SETUPAPI.@]
151 * Retrieves value data from the registry and allocates memory for the
155 * hKey [I] Handle of the key to query
156 * lpValueName [I] Name of value under hkey to query
157 * lpData [O] Destination for the values contents,
158 * lpType [O] Destination for the value type
159 * lpcbData [O] Destination for the size of data
162 * Success: ERROR_SUCCESS
166 * Use MyFree to release the lpData buffer.
168 LONG WINAPI
QueryRegistryValue(HKEY hKey
,
176 TRACE("%p %s %p %p %p\n",
177 hKey
, debugstr_w(lpValueName
), lpData
, lpType
, lpcbData
);
179 /* Get required buffer size */
181 lError
= RegQueryValueExW(hKey
, lpValueName
, 0, lpType
, NULL
, lpcbData
);
182 if (lError
!= ERROR_SUCCESS
)
185 /* Allocate buffer */
186 *lpData
= MyMalloc(*lpcbData
);
188 return ERROR_NOT_ENOUGH_MEMORY
;
190 /* Query registry value */
191 lError
= RegQueryValueExW(hKey
, lpValueName
, 0, lpType
, *lpData
, lpcbData
);
192 if (lError
!= ERROR_SUCCESS
)
199 /**************************************************************************
200 * IsUserAdmin [SETUPAPI.@]
202 * Checks whether the current user is a member of the Administrators group.
211 BOOL WINAPI
IsUserAdmin(VOID
)
214 return IsUserAnAdmin();
218 /**************************************************************************
219 * MultiByteToUnicode [SETUPAPI.@]
221 * Converts a multi-byte string to a Unicode string.
224 * lpMultiByteStr [I] Multi-byte string to be converted
225 * uCodePage [I] Code page
228 * Success: pointer to the converted Unicode string
232 * Use MyFree to release the returned Unicode string.
234 LPWSTR WINAPI
MultiByteToUnicode(LPCSTR lpMultiByteStr
, UINT uCodePage
)
239 nLength
= MultiByteToWideChar(uCodePage
, 0, lpMultiByteStr
,
244 lpUnicodeStr
= MyMalloc(nLength
* sizeof(WCHAR
));
245 if (lpUnicodeStr
== NULL
)
248 if (!MultiByteToWideChar(uCodePage
, 0, lpMultiByteStr
,
249 nLength
, lpUnicodeStr
, nLength
))
251 MyFree(lpUnicodeStr
);
259 /**************************************************************************
260 * UnicodeToMultiByte [SETUPAPI.@]
262 * Converts a Unicode string to a multi-byte string.
265 * lpUnicodeStr [I] Unicode string to be converted
266 * uCodePage [I] Code page
269 * Success: pointer to the converted multi-byte string
273 * Use MyFree to release the returned multi-byte string.
275 LPSTR WINAPI
UnicodeToMultiByte(LPCWSTR lpUnicodeStr
, UINT uCodePage
)
277 LPSTR lpMultiByteStr
;
280 nLength
= WideCharToMultiByte(uCodePage
, 0, lpUnicodeStr
, -1,
281 NULL
, 0, NULL
, NULL
);
285 lpMultiByteStr
= MyMalloc(nLength
);
286 if (lpMultiByteStr
== NULL
)
289 if (!WideCharToMultiByte(uCodePage
, 0, lpUnicodeStr
, -1,
290 lpMultiByteStr
, nLength
, NULL
, NULL
))
292 MyFree(lpMultiByteStr
);
296 return lpMultiByteStr
;
300 /**************************************************************************
301 * DoesUserHavePrivilege [SETUPAPI.@]
303 * Check whether the current user has got a given privilege.
306 * lpPrivilegeName [I] Name of the privilege to be checked
312 BOOL WINAPI
DoesUserHavePrivilege(LPCWSTR lpPrivilegeName
)
316 PTOKEN_PRIVILEGES lpPrivileges
;
319 BOOL bResult
= FALSE
;
321 TRACE("%s\n", debugstr_w(lpPrivilegeName
));
323 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &hToken
))
326 if (!GetTokenInformation(hToken
, TokenPrivileges
, NULL
, 0, &dwSize
))
328 if (GetLastError() != ERROR_INSUFFICIENT_BUFFER
)
335 lpPrivileges
= MyMalloc(dwSize
);
336 if (lpPrivileges
== NULL
)
342 if (!GetTokenInformation(hToken
, TokenPrivileges
, lpPrivileges
, dwSize
, &dwSize
))
344 MyFree(lpPrivileges
);
351 if (!LookupPrivilegeValueW(NULL
, lpPrivilegeName
, &PrivilegeLuid
))
353 MyFree(lpPrivileges
);
357 for (i
= 0; i
< lpPrivileges
->PrivilegeCount
; i
++)
359 if (lpPrivileges
->Privileges
[i
].Luid
.HighPart
== PrivilegeLuid
.HighPart
&&
360 lpPrivileges
->Privileges
[i
].Luid
.LowPart
== PrivilegeLuid
.LowPart
)
366 MyFree(lpPrivileges
);
372 /**************************************************************************
373 * EnablePrivilege [SETUPAPI.@]
375 * Enables or disables one of the current users privileges.
378 * lpPrivilegeName [I] Name of the privilege to be changed
379 * bEnable [I] TRUE: Enables the privilege
380 * FALSE: Disables the privilege
386 BOOL WINAPI
EnablePrivilege(LPCWSTR lpPrivilegeName
, BOOL bEnable
)
388 TOKEN_PRIVILEGES Privileges
;
392 TRACE("%s %s\n", debugstr_w(lpPrivilegeName
), bEnable
? "TRUE" : "FALSE");
394 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &hToken
))
397 Privileges
.PrivilegeCount
= 1;
398 Privileges
.Privileges
[0].Attributes
= (bEnable
) ? SE_PRIVILEGE_ENABLED
: 0;
400 if (!LookupPrivilegeValueW(NULL
, lpPrivilegeName
,
401 &Privileges
.Privileges
[0].Luid
))
407 bResult
= AdjustTokenPrivileges(hToken
, FALSE
, &Privileges
, 0, NULL
, NULL
);
415 /**************************************************************************
416 * DelayedMove [SETUPAPI.@]
418 * Moves a file upon the next reboot.
421 * lpExistingFileName [I] Current file name
422 * lpNewFileName [I] New file name
428 BOOL WINAPI
DelayedMove(LPCWSTR lpExistingFileName
, LPCWSTR lpNewFileName
)
430 return MoveFileExW(lpExistingFileName
, lpNewFileName
,
431 MOVEFILE_REPLACE_EXISTING
| MOVEFILE_DELAY_UNTIL_REBOOT
);
435 /**************************************************************************
436 * FileExists [SETUPAPI.@]
438 * Checks whether a file exists.
441 * lpFileName [I] Name of the file to check
442 * lpNewFileName [O] Optional information about the existing file
448 BOOL WINAPI
FileExists(LPCWSTR lpFileName
, LPWIN32_FIND_DATAW lpFileFindData
)
450 WIN32_FIND_DATAW FindData
;
455 uErrorMode
= SetErrorMode(SEM_FAILCRITICALERRORS
);
457 hFind
= FindFirstFileW(lpFileName
, &FindData
);
458 if (hFind
== INVALID_HANDLE_VALUE
)
460 dwError
= GetLastError();
461 SetErrorMode(uErrorMode
);
462 SetLastError(dwError
);
469 *lpFileFindData
= FindData
;
471 SetErrorMode(uErrorMode
);
477 /**************************************************************************
478 * CaptureStringArg [SETUPAPI.@]
480 * Captures a UNICODE string.
483 * lpSrc [I] UNICODE string to be captured
484 * lpDst [O] Pointer to the captured UNICODE string
487 * Success: ERROR_SUCCESS
488 * Failure: ERROR_INVALID_PARAMETER
491 * Call MyFree to release the captured UNICODE string.
493 DWORD WINAPI
CaptureStringArg(LPCWSTR pSrc
, LPWSTR
*pDst
)
496 return ERROR_INVALID_PARAMETER
;
498 *pDst
= DuplicateString(pSrc
);
500 return ERROR_SUCCESS
;
504 /**************************************************************************
505 * CaptureAndConvertAnsiArg [SETUPAPI.@]
507 * Captures an ANSI string and converts it to a UNICODE string.
510 * lpSrc [I] ANSI string to be captured
511 * lpDst [O] Pointer to the captured UNICODE string
514 * Success: ERROR_SUCCESS
515 * Failure: ERROR_INVALID_PARAMETER
518 * Call MyFree to release the captured UNICODE string.
520 DWORD WINAPI
CaptureAndConvertAnsiArg(LPCSTR pSrc
, LPWSTR
*pDst
)
523 return ERROR_INVALID_PARAMETER
;
525 *pDst
= MultiByteToUnicode(pSrc
, CP_ACP
);
527 return ERROR_SUCCESS
;
531 /**************************************************************************
532 * OpenAndMapFileForRead [SETUPAPI.@]
534 * Open and map a file to a buffer.
537 * lpFileName [I] Name of the file to be opened
538 * lpSize [O] Pointer to the file size
539 * lpFile [0] Pointer to the file handle
540 * lpMapping [0] Pointer to the mapping handle
541 * lpBuffer [0] Pointer to the file buffer
544 * Success: ERROR_SUCCESS
548 * Call UnmapAndCloseFile to release the file.
550 DWORD WINAPI
OpenAndMapFileForRead(LPCWSTR lpFileName
,
558 TRACE("%s %p %p %p %p\n",
559 debugstr_w(lpFileName
), lpSize
, lpFile
, lpMapping
, lpBuffer
);
561 *lpFile
= CreateFileW(lpFileName
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
562 OPEN_EXISTING
, 0, NULL
);
563 if (*lpFile
== INVALID_HANDLE_VALUE
)
564 return GetLastError();
566 *lpSize
= GetFileSize(*lpFile
, NULL
);
567 if (*lpSize
== INVALID_FILE_SIZE
)
569 dwError
= GetLastError();
570 CloseHandle(*lpFile
);
574 *lpMapping
= CreateFileMappingW(*lpFile
, NULL
, PAGE_READONLY
, 0,
576 if (*lpMapping
== NULL
)
578 dwError
= GetLastError();
579 CloseHandle(*lpFile
);
583 *lpBuffer
= MapViewOfFile(*lpMapping
, FILE_MAP_READ
, 0, 0, *lpSize
);
584 if (*lpBuffer
== NULL
)
586 dwError
= GetLastError();
587 CloseHandle(*lpMapping
);
588 CloseHandle(*lpFile
);
592 return ERROR_SUCCESS
;
596 /**************************************************************************
597 * UnmapAndCloseFile [SETUPAPI.@]
599 * Unmap and close a mapped file.
602 * hFile [I] Handle to the file
603 * hMapping [I] Handle to the file mapping
604 * lpBuffer [I] Pointer to the file buffer
610 BOOL WINAPI
UnmapAndCloseFile(HANDLE hFile
, HANDLE hMapping
, LPVOID lpBuffer
)
613 hFile
, hMapping
, lpBuffer
);
615 if (!UnmapViewOfFile(lpBuffer
))
618 if (!CloseHandle(hMapping
))
621 if (!CloseHandle(hFile
))
628 /**************************************************************************
629 * StampFileSecurity [SETUPAPI.@]
631 * Assign a new security descriptor to the given file.
634 * lpFileName [I] Name of the file
635 * pSecurityDescriptor [I] New security descriptor
638 * Success: ERROR_SUCCESS
641 DWORD WINAPI
StampFileSecurity(LPCWSTR lpFileName
, PSECURITY_DESCRIPTOR pSecurityDescriptor
)
643 TRACE("%s %p\n", debugstr_w(lpFileName
), pSecurityDescriptor
);
645 if (!SetFileSecurityW(lpFileName
, OWNER_SECURITY_INFORMATION
|
646 GROUP_SECURITY_INFORMATION
| DACL_SECURITY_INFORMATION
,
647 pSecurityDescriptor
))
648 return GetLastError();
650 return ERROR_SUCCESS
;
654 /**************************************************************************
655 * TakeOwnershipOfFile [SETUPAPI.@]
657 * Takes the ownership of the given file.
660 * lpFileName [I] Name of the file
663 * Success: ERROR_SUCCESS
666 DWORD WINAPI
TakeOwnershipOfFile(LPCWSTR lpFileName
)
668 SECURITY_DESCRIPTOR SecDesc
;
669 HANDLE hToken
= NULL
;
670 PTOKEN_OWNER pOwner
= NULL
;
674 TRACE("%s\n", debugstr_w(lpFileName
));
676 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &hToken
))
677 return GetLastError();
679 if (!GetTokenInformation(hToken
, TokenOwner
, NULL
, 0, &dwSize
))
684 pOwner
= MyMalloc(dwSize
);
688 return ERROR_NOT_ENOUGH_MEMORY
;
691 if (!GetTokenInformation(hToken
, TokenOwner
, pOwner
, dwSize
, &dwSize
))
696 if (!InitializeSecurityDescriptor(&SecDesc
, SECURITY_DESCRIPTOR_REVISION
))
701 if (!SetSecurityDescriptorOwner(&SecDesc
, pOwner
->Owner
, FALSE
))
706 if (!SetFileSecurityW(lpFileName
, OWNER_SECURITY_INFORMATION
, &SecDesc
))
714 return ERROR_SUCCESS
;
717 dwError
= GetLastError();
728 /**************************************************************************
729 * RetreiveFileSecurity [SETUPAPI.@]
731 * Retrieve the security descriptor that is associated with the given file.
734 * lpFileName [I] Name of the file
737 * Success: ERROR_SUCCESS
740 DWORD WINAPI
RetreiveFileSecurity(LPCWSTR lpFileName
,
741 PSECURITY_DESCRIPTOR
*pSecurityDescriptor
)
743 SECURITY_DESCRIPTOR
*SecDesc
, *NewSecDesc
;
744 DWORD dwSize
= 0x100;
747 SecDesc
= MyMalloc(dwSize
);
749 return ERROR_NOT_ENOUGH_MEMORY
;
751 if (GetFileSecurityW(lpFileName
, OWNER_SECURITY_INFORMATION
|
752 GROUP_SECURITY_INFORMATION
| DACL_SECURITY_INFORMATION
,
753 SecDesc
, dwSize
, &dwSize
))
755 *pSecurityDescriptor
= SecDesc
;
756 return ERROR_SUCCESS
;
759 dwError
= GetLastError();
760 if (dwError
!= ERROR_INSUFFICIENT_BUFFER
)
766 NewSecDesc
= MyRealloc(SecDesc
, dwSize
);
767 if (NewSecDesc
== NULL
)
770 return ERROR_NOT_ENOUGH_MEMORY
;
772 SecDesc
= NewSecDesc
;
774 if (GetFileSecurityW(lpFileName
, OWNER_SECURITY_INFORMATION
|
775 GROUP_SECURITY_INFORMATION
| DACL_SECURITY_INFORMATION
,
776 SecDesc
, dwSize
, &dwSize
))
778 *pSecurityDescriptor
= SecDesc
;
779 return ERROR_SUCCESS
;
782 dwError
= GetLastError();
789 static DWORD global_flags
= 0; /* FIXME: what should be in here? */
791 /***********************************************************************
792 * pSetupGetGlobalFlags (SETUPAPI.@)
794 DWORD WINAPI
pSetupGetGlobalFlags(void)
801 /***********************************************************************
802 * pSetupSetGlobalFlags (SETUPAPI.@)
804 void WINAPI
pSetupSetGlobalFlags( DWORD flags
)
806 global_flags
= flags
;
809 /***********************************************************************
810 * CMP_WaitNoPendingInstallEvents (SETUPAPI.@)
812 DWORD WINAPI
CMP_WaitNoPendingInstallEvents( DWORD dwTimeout
)
814 static BOOL warned
= FALSE
;
818 FIXME("%ld\n", dwTimeout
);
821 return WAIT_OBJECT_0
;
824 /***********************************************************************
825 * AssertFail (SETUPAPI.@)
827 * Shows an assert fail error messagebox
830 * lpFile [I] file where assert failed
831 * uLine [I] line number in file
832 * lpMessage [I] assert message
835 void WINAPI
AssertFail(LPCSTR lpFile
, UINT uLine
, LPCSTR lpMessage
)
837 FIXME("%s %u %s\n", lpFile
, uLine
, lpMessage
);
840 /***********************************************************************
841 * SetupCopyOEMInfA (SETUPAPI.@)
843 BOOL WINAPI
SetupCopyOEMInfA( PCSTR source
, PCSTR location
,
844 DWORD media_type
, DWORD style
, PSTR dest
,
845 DWORD buffer_size
, PDWORD required_size
, PSTR
*component
)
848 LPWSTR destW
= NULL
, sourceW
= NULL
, locationW
= NULL
;
851 TRACE("%s, %s, %ld, %ld, %p, %ld, %p, %p\n", debugstr_a(source
), debugstr_a(location
),
852 media_type
, style
, dest
, buffer_size
, required_size
, component
);
854 if (dest
&& !(destW
= MyMalloc( buffer_size
* sizeof(WCHAR
) ))) return FALSE
;
855 if (source
&& !(sourceW
= strdupAtoW( source
))) goto done
;
856 if (location
&& !(locationW
= strdupAtoW( location
))) goto done
;
858 ret
= SetupCopyOEMInfW( sourceW
, locationW
, media_type
, style
, destW
, buffer_size
, &size
, NULL
);
860 if (required_size
) *required_size
= size
;
864 if (buffer_size
>= size
)
866 WideCharToMultiByte( CP_ACP
, 0, destW
, -1, dest
, buffer_size
, NULL
, NULL
);
867 if (component
) *component
= strrchr( dest
, '\\' ) + 1;
870 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
875 HeapFree( GetProcessHeap(), 0, sourceW
);
876 HeapFree( GetProcessHeap(), 0, locationW
);
877 if (ret
) SetLastError(ERROR_SUCCESS
);
881 static int compare_files( HANDLE file1
, HANDLE file2
)
888 while( ReadFile(file1
, buffer1
, sizeof(buffer1
), &size1
, NULL
) &&
889 ReadFile(file2
, buffer2
, sizeof(buffer2
), &size2
, NULL
) )
893 return size1
> size2
? 1 : -1;
896 ret
= memcmp( buffer1
, buffer2
, size1
);
904 static BOOL
find_existing_inf(const WCHAR
*source
, WCHAR
*target
)
906 static const WCHAR infW
[] = {'\\','i','n','f','\\',0};
907 static const WCHAR wildcardW
[] = {'*',0};
909 LARGE_INTEGER source_file_size
, dest_file_size
;
910 HANDLE source_file
, dest_file
;
911 WIN32_FIND_DATAW find_data
;
914 source_file
= CreateFileW( source
, FILE_READ_DATA
| FILE_READ_ATTRIBUTES
,
915 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
916 NULL
, OPEN_EXISTING
, 0, NULL
);
917 if (source_file
== INVALID_HANDLE_VALUE
)
920 if (!GetFileSizeEx( source_file
, &source_file_size
))
922 CloseHandle( source_file
);
926 GetWindowsDirectoryW( target
, MAX_PATH
);
927 lstrcatW( target
, infW
);
928 lstrcatW( target
, wildcardW
);
929 if ((find_handle
= FindFirstFileW( target
, &find_data
)) != INVALID_HANDLE_VALUE
)
932 GetWindowsDirectoryW( target
, MAX_PATH
);
933 lstrcatW( target
, infW
);
934 lstrcatW( target
, find_data
.cFileName
);
935 dest_file
= CreateFileW( target
, FILE_READ_DATA
| FILE_READ_ATTRIBUTES
,
936 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
937 NULL
, OPEN_EXISTING
, 0, NULL
);
938 if (dest_file
== INVALID_HANDLE_VALUE
)
941 SetFilePointer( source_file
, 0, NULL
, FILE_BEGIN
);
943 if (GetFileSizeEx( dest_file
, &dest_file_size
)
944 && dest_file_size
.QuadPart
== source_file_size
.QuadPart
945 && !compare_files( source_file
, dest_file
))
947 CloseHandle( dest_file
);
948 CloseHandle( source_file
);
949 FindClose( find_handle
);
952 CloseHandle( dest_file
);
953 } while (FindNextFileW( find_handle
, &find_data
));
955 FindClose( find_handle
);
958 CloseHandle( source_file
);
962 /***********************************************************************
963 * SetupCopyOEMInfW (SETUPAPI.@)
965 BOOL WINAPI
SetupCopyOEMInfW( PCWSTR source
, PCWSTR location
,
966 DWORD media_type
, DWORD style
, PWSTR dest
,
967 DWORD buffer_size
, DWORD
*required_size
, WCHAR
**filepart
)
970 WCHAR target
[MAX_PATH
], catalog_file
[MAX_PATH
], pnf_path
[MAX_PATH
], *p
;
971 static const WCHAR inf
[] = { '\\','i','n','f','\\',0 };
972 static const WCHAR wszVersion
[] = { 'V','e','r','s','i','o','n',0 };
973 static const WCHAR wszCatalogFile
[] = { 'C','a','t','a','l','o','g','F','i','l','e',0 };
979 TRACE("%s, %s, %ld, %ld, %p, %ld, %p, %p\n", debugstr_w(source
), debugstr_w(location
),
980 media_type
, style
, dest
, buffer_size
, required_size
, filepart
);
984 SetLastError(ERROR_INVALID_PARAMETER
);
988 /* check for a relative path */
989 if (!(*source
== '\\' || (*source
&& source
[1] == ':')))
991 SetLastError(ERROR_FILE_NOT_FOUND
);
995 if (find_existing_inf( source
, target
))
997 TRACE("Found existing INF %s.\n", debugstr_w(target
));
998 if (style
& SP_COPY_NOOVERWRITE
)
1000 SetLastError( ERROR_FILE_EXISTS
);
1008 GetWindowsDirectoryW( target
, ARRAY_SIZE(target
) );
1009 lstrcatW( target
, inf
);
1010 lstrcatW( target
, wcsrchr( source
, '\\' ) + 1 );
1011 if (GetFileAttributesW( target
) != INVALID_FILE_ATTRIBUTES
)
1013 for (i
= 0; i
< OEM_INDEX_LIMIT
; i
++)
1015 static const WCHAR formatW
[] = {'o','e','m','%','u','.','i','n','f',0};
1017 GetWindowsDirectoryW( target
, ARRAY_SIZE(target
) );
1018 lstrcatW( target
, inf
);
1019 swprintf( target
+ lstrlenW(target
), ARRAY_SIZE(target
) - lstrlenW(target
), formatW
, i
);
1021 if (GetFileAttributesW( target
) == INVALID_FILE_ATTRIBUTES
)
1024 if (i
== OEM_INDEX_LIMIT
)
1026 SetLastError( ERROR_FILENAME_EXCED_RANGE
);
1031 hinf
= SetupOpenInfFileW( source
, NULL
, INF_STYLE_WIN4
, NULL
);
1032 if (hinf
== INVALID_HANDLE_VALUE
) return FALSE
;
1034 if (SetupGetLineTextW( NULL
, hinf
, wszVersion
, wszCatalogFile
, catalog_file
,
1035 ARRAY_SIZE( catalog_file
), NULL
))
1037 WCHAR source_cat
[MAX_PATH
];
1040 GUID msguid
= DRIVER_ACTION_VERIFY
;
1042 SetupCloseInfFile( hinf
);
1044 lstrcpyW( source_cat
, source
);
1045 p
= wcsrchr( source_cat
, '\\' );
1047 else p
= source_cat
;
1048 lstrcpyW( p
, catalog_file
);
1050 TRACE("installing catalog file %s\n", debugstr_w( source_cat
));
1052 if (!CryptCATAdminAcquireContext(&handle
, &msguid
, 0))
1054 ERR("Could not acquire security context\n");
1058 if (!(cat
= CryptCATAdminAddCatalog(handle
, source_cat
, catalog_file
, 0)))
1060 ERR("Could not add catalog\n");
1061 CryptCATAdminReleaseContext(handle
, 0);
1065 CryptCATAdminReleaseCatalogContext(handle
, cat
, 0);
1066 CryptCATAdminReleaseContext(handle
, 0);
1069 SetupCloseInfFile( hinf
);
1071 if (!(ret
= CopyFileW( source
, target
, TRUE
)))
1075 if (style
& SP_COPY_DELETESOURCE
)
1076 DeleteFileW( source
);
1080 wcscpy(pnf_path
, target
);
1081 PathRemoveExtensionW(pnf_path
);
1082 PathAddExtensionW(pnf_path
, L
".pnf");
1083 if ((pnf_file
= _wfopen(pnf_path
, L
"w")))
1085 fputws(PNF_HEADER
, pnf_file
);
1086 fputws(source
, pnf_file
);
1091 size
= lstrlenW( target
) + 1;
1094 if (buffer_size
>= size
)
1096 lstrcpyW( dest
, target
);
1097 if (filepart
) *filepart
= wcsrchr( dest
, '\\' ) + 1;
1101 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
1106 if (required_size
) *required_size
= size
;
1107 if (ret
) SetLastError(ERROR_SUCCESS
);
1112 /***********************************************************************
1113 * SetupUninstallOEMInfA (SETUPAPI.@)
1115 BOOL WINAPI
SetupUninstallOEMInfA( PCSTR inf_file
, DWORD flags
, PVOID reserved
)
1118 WCHAR
*inf_fileW
= NULL
;
1120 TRACE("%s, 0x%08lx, %p\n", debugstr_a(inf_file
), flags
, reserved
);
1122 if (inf_file
&& !(inf_fileW
= strdupAtoW( inf_file
))) return FALSE
;
1123 ret
= SetupUninstallOEMInfW( inf_fileW
, flags
, reserved
);
1124 HeapFree( GetProcessHeap(), 0, inf_fileW
);
1128 /***********************************************************************
1129 * SetupUninstallOEMInfW (SETUPAPI.@)
1131 BOOL WINAPI
SetupUninstallOEMInfW( PCWSTR inf_file
, DWORD flags
, PVOID reserved
)
1133 static const WCHAR infW
[] = {'\\','i','n','f','\\',0};
1134 WCHAR target
[MAX_PATH
];
1136 TRACE("%s, 0x%08lx, %p\n", debugstr_w(inf_file
), flags
, reserved
);
1140 SetLastError(ERROR_INVALID_PARAMETER
);
1144 if (!GetWindowsDirectoryW( target
, ARRAY_SIZE( target
))) return FALSE
;
1146 lstrcatW( target
, infW
);
1147 lstrcatW( target
, inf_file
);
1149 if (flags
& SUOI_FORCEDELETE
)
1150 return DeleteFileW(target
);
1152 FIXME("not deleting %s\n", debugstr_w(target
));
1157 /***********************************************************************
1158 * InstallCatalog (SETUPAPI.@)
1160 DWORD WINAPI
InstallCatalog( LPCSTR catalog
, LPCSTR basename
, LPSTR fullname
)
1162 FIXME("%s, %s, %p\n", debugstr_a(catalog
), debugstr_a(basename
), fullname
);
1166 /***********************************************************************
1167 * pSetupInstallCatalog (SETUPAPI.@)
1169 DWORD WINAPI
pSetupInstallCatalog( LPCWSTR catalog
, LPCWSTR basename
, LPWSTR fullname
)
1174 TRACE ("%s, %s, %p\n", debugstr_w(catalog
), debugstr_w(basename
), fullname
);
1176 if (!CryptCATAdminAcquireContext(&admin
,NULL
,0))
1177 return GetLastError();
1179 if (!(cat
= CryptCATAdminAddCatalog( admin
, (PWSTR
)catalog
, (PWSTR
)basename
, 0 )))
1181 DWORD rc
= GetLastError();
1182 CryptCATAdminReleaseContext(admin
, 0);
1185 CryptCATAdminReleaseCatalogContext(admin
, cat
, 0);
1186 CryptCATAdminReleaseContext(admin
,0);
1189 FIXME("not returning full installed catalog path\n");
1194 static UINT
detect_compression_type( LPCWSTR file
)
1198 UINT type
= FILE_COMPRESSION_NONE
;
1199 static const BYTE LZ_MAGIC
[] = { 0x53, 0x5a, 0x44, 0x44, 0x88, 0xf0, 0x27, 0x33 };
1200 static const BYTE MSZIP_MAGIC
[] = { 0x4b, 0x57, 0x41, 0x4a };
1201 static const BYTE NTCAB_MAGIC
[] = { 0x4d, 0x53, 0x43, 0x46 };
1204 handle
= CreateFileW( file
, GENERIC_READ
, 0, NULL
, OPEN_EXISTING
, 0, NULL
);
1205 if (handle
== INVALID_HANDLE_VALUE
)
1207 ERR("cannot open file %s\n", debugstr_w(file
));
1208 return FILE_COMPRESSION_NONE
;
1210 if (!ReadFile( handle
, buffer
, sizeof(buffer
), &size
, NULL
) || size
!= sizeof(buffer
))
1212 CloseHandle( handle
);
1213 return FILE_COMPRESSION_NONE
;
1215 if (!memcmp( buffer
, LZ_MAGIC
, sizeof(LZ_MAGIC
) )) type
= FILE_COMPRESSION_WINLZA
;
1216 else if (!memcmp( buffer
, MSZIP_MAGIC
, sizeof(MSZIP_MAGIC
) )) type
= FILE_COMPRESSION_MSZIP
;
1217 else if (!memcmp( buffer
, NTCAB_MAGIC
, sizeof(NTCAB_MAGIC
) )) type
= FILE_COMPRESSION_MSZIP
; /* not a typo */
1219 CloseHandle( handle
);
1223 static BOOL
get_file_size( LPCWSTR file
, DWORD
*size
)
1227 handle
= CreateFileW( file
, GENERIC_READ
, 0, NULL
, OPEN_EXISTING
, 0, NULL
);
1228 if (handle
== INVALID_HANDLE_VALUE
)
1230 ERR("cannot open file %s\n", debugstr_w(file
));
1233 *size
= GetFileSize( handle
, NULL
);
1234 CloseHandle( handle
);
1238 static BOOL
get_file_sizes_none( LPCWSTR source
, DWORD
*source_size
, DWORD
*target_size
)
1242 if (!get_file_size( source
, &size
)) return FALSE
;
1243 if (source_size
) *source_size
= size
;
1244 if (target_size
) *target_size
= size
;
1248 static BOOL
get_file_sizes_lz( LPCWSTR source
, DWORD
*source_size
, DWORD
*target_size
)
1255 if (!get_file_size( source
, &size
)) ret
= FALSE
;
1256 else *source_size
= size
;
1263 if ((file
= LZOpenFileW( (LPWSTR
)source
, &of
, OF_READ
)) < 0)
1265 ERR("cannot open source file for reading\n");
1268 *target_size
= LZSeek( file
, 0, 2 );
1274 static UINT CALLBACK
file_compression_info_callback( PVOID context
, UINT notification
, UINT_PTR param1
, UINT_PTR param2
)
1276 DWORD
*size
= context
;
1277 FILE_IN_CABINET_INFO_W
*info
= (FILE_IN_CABINET_INFO_W
*)param1
;
1279 switch (notification
)
1281 case SPFILENOTIFY_FILEINCABINET
:
1283 *size
= info
->FileSize
;
1286 default: return NO_ERROR
;
1290 static BOOL
get_file_sizes_cab( LPCWSTR source
, DWORD
*source_size
, DWORD
*target_size
)
1297 if (!get_file_size( source
, &size
)) ret
= FALSE
;
1298 else *source_size
= size
;
1302 ret
= SetupIterateCabinetW( source
, 0, file_compression_info_callback
, target_size
);
1307 /***********************************************************************
1308 * SetupGetFileCompressionInfoExA (SETUPAPI.@)
1310 * See SetupGetFileCompressionInfoExW.
1312 BOOL WINAPI
SetupGetFileCompressionInfoExA( PCSTR source
, PSTR name
, DWORD len
, PDWORD required
,
1313 PDWORD source_size
, PDWORD target_size
, PUINT type
)
1316 WCHAR
*nameW
= NULL
, *sourceW
= NULL
;
1320 TRACE("%s, %p, %ld, %p, %p, %p, %p\n", debugstr_a(source
), name
, len
, required
,
1321 source_size
, target_size
, type
);
1323 if (!source
|| !(sourceW
= MultiByteToUnicode( source
, CP_ACP
))) return FALSE
;
1327 ret
= SetupGetFileCompressionInfoExW( sourceW
, NULL
, 0, &nb_chars
, NULL
, NULL
, NULL
);
1328 if (!(nameW
= HeapAlloc( GetProcessHeap(), 0, nb_chars
* sizeof(WCHAR
) )))
1334 ret
= SetupGetFileCompressionInfoExW( sourceW
, nameW
, nb_chars
, &nb_chars
, source_size
, target_size
, type
);
1337 if ((nameA
= UnicodeToMultiByte( nameW
, CP_ACP
)))
1339 if (name
&& len
>= nb_chars
) lstrcpyA( name
, nameA
);
1342 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
1348 if (required
) *required
= nb_chars
;
1349 HeapFree( GetProcessHeap(), 0, nameW
);
1355 /***********************************************************************
1356 * SetupGetFileCompressionInfoExW (SETUPAPI.@)
1358 * Get compression type and compressed/uncompressed sizes of a given file.
1361 * source [I] File to examine.
1362 * name [O] Actual filename used.
1363 * len [I] Length in characters of 'name' buffer.
1364 * required [O] Number of characters written to 'name'.
1365 * source_size [O] Size of compressed file.
1366 * target_size [O] Size of uncompressed file.
1367 * type [O] Compression type.
1373 BOOL WINAPI
SetupGetFileCompressionInfoExW( PCWSTR source
, PWSTR name
, DWORD len
, PDWORD required
,
1374 PDWORD source_size
, PDWORD target_size
, PUINT type
)
1380 TRACE("%s, %p, %ld, %p, %p, %p, %p\n", debugstr_w(source
), name
, len
, required
,
1381 source_size
, target_size
, type
);
1383 if (!source
) return FALSE
;
1385 source_len
= lstrlenW( source
) + 1;
1386 if (required
) *required
= source_len
;
1387 if (name
&& len
>= source_len
)
1389 lstrcpyW( name
, source
);
1394 comp
= detect_compression_type( source
);
1395 if (type
) *type
= comp
;
1399 case FILE_COMPRESSION_MSZIP
:
1400 case FILE_COMPRESSION_NTCAB
: ret
= get_file_sizes_cab( source
, source_size
, target_size
); break;
1401 case FILE_COMPRESSION_NONE
: ret
= get_file_sizes_none( source
, source_size
, target_size
); break;
1402 case FILE_COMPRESSION_WINLZA
: ret
= get_file_sizes_lz( source
, source_size
, target_size
); break;
1408 /***********************************************************************
1409 * SetupGetFileCompressionInfoA (SETUPAPI.@)
1411 * See SetupGetFileCompressionInfoW.
1413 DWORD WINAPI
SetupGetFileCompressionInfoA( PCSTR source
, PSTR
*name
, PDWORD source_size
,
1414 PDWORD target_size
, PUINT type
)
1417 DWORD error
, required
;
1420 TRACE("%s, %p, %p, %p, %p\n", debugstr_a(source
), name
, source_size
, target_size
, type
);
1422 if (!source
|| !name
|| !source_size
|| !target_size
|| !type
)
1423 return ERROR_INVALID_PARAMETER
;
1425 ret
= SetupGetFileCompressionInfoExA( source
, NULL
, 0, &required
, NULL
, NULL
, NULL
);
1426 if (!(actual_name
= MyMalloc( required
))) return ERROR_NOT_ENOUGH_MEMORY
;
1428 ret
= SetupGetFileCompressionInfoExA( source
, actual_name
, required
, &required
,
1429 source_size
, target_size
, type
);
1432 error
= GetLastError();
1433 MyFree( actual_name
);
1436 *name
= actual_name
;
1437 return ERROR_SUCCESS
;
1440 /***********************************************************************
1441 * SetupGetFileCompressionInfoW (SETUPAPI.@)
1443 * Get compression type and compressed/uncompressed sizes of a given file.
1446 * source [I] File to examine.
1447 * name [O] Actual filename used.
1448 * source_size [O] Size of compressed file.
1449 * target_size [O] Size of uncompressed file.
1450 * type [O] Compression type.
1453 * Success: ERROR_SUCCESS
1454 * Failure: Win32 error code.
1456 DWORD WINAPI
SetupGetFileCompressionInfoW( PCWSTR source
, PWSTR
*name
, PDWORD source_size
,
1457 PDWORD target_size
, PUINT type
)
1460 DWORD error
, required
;
1463 TRACE("%s, %p, %p, %p, %p\n", debugstr_w(source
), name
, source_size
, target_size
, type
);
1465 if (!source
|| !name
|| !source_size
|| !target_size
|| !type
)
1466 return ERROR_INVALID_PARAMETER
;
1468 ret
= SetupGetFileCompressionInfoExW( source
, NULL
, 0, &required
, NULL
, NULL
, NULL
);
1469 if (!(actual_name
= MyMalloc( required
* sizeof(WCHAR
) )))
1470 return ERROR_NOT_ENOUGH_MEMORY
;
1472 ret
= SetupGetFileCompressionInfoExW( source
, actual_name
, required
, &required
,
1473 source_size
, target_size
, type
);
1476 error
= GetLastError();
1477 MyFree( actual_name
);
1480 *name
= actual_name
;
1481 return ERROR_SUCCESS
;
1484 static DWORD
decompress_file_lz( LPCWSTR source
, LPCWSTR target
)
1491 if ((src
= LZOpenFileW( (LPWSTR
)source
, &sof
, OF_READ
)) < 0)
1493 ERR("cannot open source file for reading\n");
1494 return ERROR_FILE_NOT_FOUND
;
1496 if ((dst
= LZOpenFileW( (LPWSTR
)target
, &dof
, OF_CREATE
)) < 0)
1498 ERR("cannot open target file for writing\n");
1500 return ERROR_FILE_NOT_FOUND
;
1502 if ((error
= LZCopy( src
, dst
)) >= 0) ret
= ERROR_SUCCESS
;
1505 WARN("failed to decompress file %ld\n", error
);
1506 ret
= ERROR_INVALID_DATA
;
1514 struct callback_context
1520 static UINT CALLBACK
decompress_or_copy_callback( PVOID context
, UINT notification
, UINT_PTR param1
, UINT_PTR param2
)
1522 struct callback_context
*context_info
= context
;
1523 FILE_IN_CABINET_INFO_W
*info
= (FILE_IN_CABINET_INFO_W
*)param1
;
1525 switch (notification
)
1527 case SPFILENOTIFY_FILEINCABINET
:
1529 if (context_info
->has_extracted
)
1530 return FILEOP_ABORT
;
1532 TRACE("Requesting extraction of cabinet file %s\n",
1533 wine_dbgstr_w(info
->NameInCabinet
));
1534 lstrcpyW( info
->FullTargetName
, context_info
->target
);
1535 context_info
->has_extracted
= TRUE
;
1538 default: return NO_ERROR
;
1542 static DWORD
decompress_file_cab( LPCWSTR source
, LPCWSTR target
)
1544 struct callback_context context
= {0, target
};
1547 ret
= SetupIterateCabinetW( source
, 0, decompress_or_copy_callback
, &context
);
1549 if (ret
) return ERROR_SUCCESS
;
1550 else return GetLastError();
1553 /***********************************************************************
1554 * SetupDecompressOrCopyFileA (SETUPAPI.@)
1556 * See SetupDecompressOrCopyFileW.
1558 DWORD WINAPI
SetupDecompressOrCopyFileA( PCSTR source
, PCSTR target
, PUINT type
)
1561 WCHAR
*sourceW
= NULL
, *targetW
= NULL
;
1563 if (source
&& !(sourceW
= MultiByteToUnicode( source
, CP_ACP
))) return FALSE
;
1564 if (target
&& !(targetW
= MultiByteToUnicode( target
, CP_ACP
)))
1567 return ERROR_NOT_ENOUGH_MEMORY
;
1570 ret
= SetupDecompressOrCopyFileW( sourceW
, targetW
, type
);
1578 /***********************************************************************
1579 * SetupDecompressOrCopyFileW (SETUPAPI.@)
1581 * Copy a file and decompress it if needed.
1584 * source [I] File to copy.
1585 * target [I] Filename of the copy.
1586 * type [I] Compression type.
1589 * Success: ERROR_SUCCESS
1590 * Failure: Win32 error code.
1592 DWORD WINAPI
SetupDecompressOrCopyFileW( PCWSTR source
, PCWSTR target
, PUINT type
)
1595 DWORD ret
= ERROR_INVALID_PARAMETER
;
1597 TRACE("(%s, %s, %p)\n", debugstr_w(source
), debugstr_w(target
), type
);
1599 if (!source
|| !target
) return ERROR_INVALID_PARAMETER
;
1603 comp
= detect_compression_type( source
);
1604 TRACE("Detected compression type %u\n", comp
);
1609 TRACE("Using specified compression type %u\n", comp
);
1614 case FILE_COMPRESSION_NONE
:
1615 if (CopyFileW( source
, target
, FALSE
)) ret
= ERROR_SUCCESS
;
1616 else ret
= GetLastError();
1618 case FILE_COMPRESSION_WINLZA
:
1619 ret
= decompress_file_lz( source
, target
);
1621 case FILE_COMPRESSION_NTCAB
:
1622 case FILE_COMPRESSION_MSZIP
:
1623 ret
= decompress_file_cab( source
, target
);
1626 WARN("unknown compression type %d\n", comp
);
1630 TRACE("%s -> %s %d\n", debugstr_w(source
), debugstr_w(target
), comp
);
1634 static BOOL non_interactive_mode
;
1636 /***********************************************************************
1637 * SetupGetNonInteractiveMode (SETUPAPI.@)
1639 BOOL WINAPI
SetupGetNonInteractiveMode( void )
1642 return non_interactive_mode
;
1645 /***********************************************************************
1646 * SetupSetNonInteractiveMode (SETUPAPI.@)
1648 BOOL WINAPI
SetupSetNonInteractiveMode( BOOL flag
)
1650 BOOL ret
= non_interactive_mode
;
1652 FIXME("%d\n", flag
);
1654 non_interactive_mode
= flag
;
1658 /***********************************************************************
1659 * SetupCloseLog(SETUPAPI.@)
1661 void WINAPI
SetupCloseLog(void)
1663 EnterCriticalSection(&setupapi_cs
);
1665 CloseHandle(setupact
);
1666 setupact
= INVALID_HANDLE_VALUE
;
1668 CloseHandle(setuperr
);
1669 setuperr
= INVALID_HANDLE_VALUE
;
1671 LeaveCriticalSection(&setupapi_cs
);
1674 /***********************************************************************
1675 * SetupOpenLog(SETUPAPI.@)
1677 BOOL WINAPI
SetupOpenLog(BOOL reserved
)
1679 WCHAR path
[MAX_PATH
];
1681 static const WCHAR setupactlog
[] = {'\\','s','e','t','u','p','a','c','t','.','l','o','g',0};
1682 static const WCHAR setuperrlog
[] = {'\\','s','e','t','u','p','e','r','r','.','l','o','g',0};
1684 EnterCriticalSection(&setupapi_cs
);
1686 if (setupact
!= INVALID_HANDLE_VALUE
&& setuperr
!= INVALID_HANDLE_VALUE
)
1688 LeaveCriticalSection(&setupapi_cs
);
1692 GetWindowsDirectoryW(path
, MAX_PATH
);
1693 lstrcatW(path
, setupactlog
);
1695 setupact
= CreateFileW(path
, FILE_GENERIC_WRITE
, FILE_SHARE_WRITE
| FILE_SHARE_READ
,
1696 NULL
, OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
1697 if (setupact
== INVALID_HANDLE_VALUE
)
1699 LeaveCriticalSection(&setupapi_cs
);
1703 SetFilePointer(setupact
, 0, NULL
, FILE_END
);
1705 GetWindowsDirectoryW(path
, MAX_PATH
);
1706 lstrcatW(path
, setuperrlog
);
1708 setuperr
= CreateFileW(path
, FILE_GENERIC_WRITE
, FILE_SHARE_WRITE
| FILE_SHARE_READ
,
1709 NULL
, OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
1710 if (setuperr
== INVALID_HANDLE_VALUE
)
1712 CloseHandle(setupact
);
1713 setupact
= INVALID_HANDLE_VALUE
;
1714 LeaveCriticalSection(&setupapi_cs
);
1718 SetFilePointer(setuperr
, 0, NULL
, FILE_END
);
1720 LeaveCriticalSection(&setupapi_cs
);
1725 /***********************************************************************
1726 * SetupLogErrorA(SETUPAPI.@)
1728 BOOL WINAPI
SetupLogErrorA(LPCSTR message
, LogSeverity severity
)
1730 static const char null
[] = "(null)";
1735 EnterCriticalSection(&setupapi_cs
);
1737 if (setupact
== INVALID_HANDLE_VALUE
|| setuperr
== INVALID_HANDLE_VALUE
)
1739 SetLastError(ERROR_FILE_INVALID
);
1744 if (message
== NULL
)
1747 len
= lstrlenA(message
);
1749 ret
= WriteFile(setupact
, message
, len
, &written
, NULL
);
1753 if (severity
>= LogSevMaximum
)
1759 if (severity
> LogSevInformation
)
1760 ret
= WriteFile(setuperr
, message
, len
, &written
, NULL
);
1763 LeaveCriticalSection(&setupapi_cs
);
1767 /***********************************************************************
1768 * SetupLogErrorW(SETUPAPI.@)
1770 BOOL WINAPI
SetupLogErrorW(LPCWSTR message
, LogSeverity severity
)
1778 len
= WideCharToMultiByte(CP_ACP
, 0, message
, -1, NULL
, 0, NULL
, NULL
);
1779 msg
= HeapAlloc(GetProcessHeap(), 0, len
);
1782 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1785 WideCharToMultiByte(CP_ACP
, 0, message
, -1, msg
, len
, NULL
, NULL
);
1788 /* This is the normal way to proceed. The log files are ANSI files
1789 * and W is to be converted.
1791 ret
= SetupLogErrorA(msg
, severity
);
1793 HeapFree(GetProcessHeap(), 0, msg
);
1797 /***********************************************************************
1798 * CM_Get_Version (SETUPAPI.@)
1800 WORD WINAPI
CM_Get_Version(void)