[MKSHELLLINK]

Fix MSVC build.

Patch by Samuel Serapion.

svn path=/trunk/; revision=54650
This commit is contained in:
Sylvain Petreolle 2011-12-14 21:58:53 +00:00
parent 73252334c4
commit 838328b1ed

View file

@ -8,7 +8,13 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#ifndef _MSC_VER
#include <stdint.h>
#else
typedef unsigned __int8 uint8_t;
typedef unsigned __int16 uint16_t;
typedef unsigned __int32 uint32_t;
#endif
#define SW_SHOWNORMAL 1
#define SW_SHOWMINNOACTIVE 7