From 68fcd6e10b17856c6ab5bdf4727496569416e2f9 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 27 May 2014 22:58:53 +0000 Subject: [PATCH] [CRT] Do not mark inp* and outp* as dllimport. svn path=/trunk/; revision=63489 --- reactos/include/crt/conio.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/include/crt/conio.h b/reactos/include/crt/conio.h index 74dcf45ae00..e260cf1969a 100644 --- a/reactos/include/crt/conio.h +++ b/reactos/include/crt/conio.h @@ -416,10 +416,10 @@ extern "C" { int _Ch); #if (defined(_X86_) && !defined(__x86_64)) - _CRT_NONSTDC_DEPRECATE(_inp) _CRTIMP int __cdecl inp(unsigned short); - _CRT_NONSTDC_DEPRECATE(_inpw) _CRTIMP unsigned short __cdecl inpw(unsigned short); - _CRT_NONSTDC_DEPRECATE(_outp) _CRTIMP int __cdecl outp(unsigned short,int); - _CRT_NONSTDC_DEPRECATE(_outpw) _CRTIMP unsigned short __cdecl outpw(unsigned short,unsigned short); + _CRT_NONSTDC_DEPRECATE(_inp) int __cdecl inp(unsigned short); + _CRT_NONSTDC_DEPRECATE(_inpw) unsigned short __cdecl inpw(unsigned short); + _CRT_NONSTDC_DEPRECATE(_outp) int __cdecl outp(unsigned short,int); + _CRT_NONSTDC_DEPRECATE(_outpw) unsigned short __cdecl outpw(unsigned short,unsigned short); #endif #endif /* !NO_OLDNAMES */ -- 2.17.1