shell32: Fix compilation of test on MSVC6.

This commit is contained in:
Mike McCormack 2006-08-24 19:16:01 +09:00 committed by Alexandre Julliard
parent 11b7097df8
commit 9949a3a463
1 changed files with 9 additions and 3 deletions

View File

@ -22,14 +22,20 @@
#include <stdio.h>
#define WINE_NOWINSOCK
#include "windef.h"
#include "winbase.h"
#include "wtypes.h"
#include <windows.h>
#include "shellapi.h"
#include "shlobj.h"
#include "wine/test.h"
#ifndef INVALID_FILE_ATTRIBUTES
#define INVALID_FILE_ATTRIBUTES 0xffffffff
#endif
#ifndef FOF_NORECURSION
#define FOF_NORECURSION 0x1000
#endif
CHAR CURR_DIR[MAX_PATH];
static HMODULE hshell32;