cabinet/tests: Compile with -D__WINESRC__.
This commit is contained in:
parent
4553e6d144
commit
947977f614
|
@ -1,6 +1,5 @@
|
|||
TESTDLL = cabinet.dll
|
||||
IMPORTS = cabinet
|
||||
EXTRADEFS = -U__WINESRC__ -DWINE_STRICT_PROTOTYPES -DWINE_NO_NAMELESS_EXTENSION -DWIDL_C_INLINE_WRAPPERS
|
||||
|
||||
C_SRCS = \
|
||||
extract.c \
|
||||
|
|
|
@ -240,8 +240,8 @@ static INT_PTR CDECL get_open_info(char *pszName, USHORT *pdate, USHORT *ptime,
|
|||
DWORD attrs;
|
||||
BOOL res;
|
||||
|
||||
handle = CreateFile(pszName, GENERIC_READ, FILE_SHARE_READ, NULL,
|
||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
||||
handle = CreateFileA(pszName, GENERIC_READ, FILE_SHARE_READ, NULL,
|
||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
||||
|
||||
ok(handle != INVALID_HANDLE_VALUE, "Failed to CreateFile %s\n", pszName);
|
||||
|
||||
|
@ -251,7 +251,7 @@ static INT_PTR CDECL get_open_info(char *pszName, USHORT *pdate, USHORT *ptime,
|
|||
FileTimeToLocalFileTime(&finfo.ftLastWriteTime, &filetime);
|
||||
FileTimeToDosDateTime(&filetime, pdate, ptime);
|
||||
|
||||
attrs = GetFileAttributes(pszName);
|
||||
attrs = GetFileAttributesA(pszName);
|
||||
ok(attrs != INVALID_FILE_ATTRIBUTES, "Failed to GetFileAttributes\n");
|
||||
|
||||
return (INT_PTR)handle;
|
||||
|
@ -623,7 +623,7 @@ static void test_Extract(void)
|
|||
|
||||
/* first file exists */
|
||||
createTestFile("dest\\a.txt");
|
||||
SetFileAttributes("dest\\a.txt", FILE_ATTRIBUTE_READONLY);
|
||||
SetFileAttributesA("dest\\a.txt", FILE_ATTRIBUTE_READONLY);
|
||||
ZeroMemory(&session, sizeof(SESSION));
|
||||
lstrcpyA(session.Destination, "dest");
|
||||
session.Operation = EXTRACT_FILLFILELIST | EXTRACT_EXTRACTFILES;
|
||||
|
@ -665,7 +665,7 @@ static void test_Extract(void)
|
|||
|
||||
/* third file exists */
|
||||
createTestFile("dest\\testdir\\c.txt");
|
||||
SetFileAttributes("dest\\testdir\\c.txt", FILE_ATTRIBUTE_READONLY);
|
||||
SetFileAttributesA("dest\\testdir\\c.txt", FILE_ATTRIBUTE_READONLY);
|
||||
ZeroMemory(&session, sizeof(SESSION));
|
||||
lstrcpyA(session.Destination, "dest");
|
||||
session.Operation = EXTRACT_FILLFILELIST | EXTRACT_EXTRACTFILES;
|
||||
|
|
|
@ -440,8 +440,8 @@ static INT_PTR CDECL get_open_info(char *pszName, USHORT *pdate, USHORT *ptime,
|
|||
DWORD attrs;
|
||||
BOOL res;
|
||||
|
||||
handle = CreateFile(pszName, GENERIC_READ, FILE_SHARE_READ, NULL,
|
||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
||||
handle = CreateFileA(pszName, GENERIC_READ, FILE_SHARE_READ, NULL,
|
||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
||||
|
||||
ok(handle != INVALID_HANDLE_VALUE, "Failed to CreateFile %s\n", pszName);
|
||||
|
||||
|
@ -451,7 +451,7 @@ static INT_PTR CDECL get_open_info(char *pszName, USHORT *pdate, USHORT *ptime,
|
|||
FileTimeToLocalFileTime(&finfo.ftLastWriteTime, &filetime);
|
||||
FileTimeToDosDateTime(&filetime, pdate, ptime);
|
||||
|
||||
attrs = GetFileAttributes(pszName);
|
||||
attrs = GetFileAttributesA(pszName);
|
||||
ok(attrs != INVALID_FILE_ATTRIBUTES, "Failed to GetFileAttributes\n");
|
||||
/* fixme: should convert attrs to *pattribs, make sure
|
||||
* have a test that catches the fact that we don't?
|
||||
|
|
Loading…
Reference in New Issue