fixed msvc compilation for __restrict__

svn-id: r15160
This commit is contained in:
Paweł Kołodziejski 2004-09-18 10:25:49 +00:00
parent af77554dc3
commit 27946f1e86
2 changed files with 8 additions and 0 deletions
common/scaler

@ -21,6 +21,10 @@
#ifndef __SCALE2X_H
#define __SCALE2X_H
#if defined(_MSC_VER)
#define __restrict__
#endif
typedef unsigned char scale2x_uint8;
typedef unsigned short scale2x_uint16;
typedef unsigned scale2x_uint32;

@ -21,6 +21,10 @@
#ifndef __SCALE3X_H
#define __SCALE3X_H
#if defined(_MSC_VER)
#define __restrict__
#endif
typedef unsigned char scale3x_uint8;
typedef unsigned short scale3x_uint16;
typedef unsigned scale3x_uint32;