Author: tkreuzer
Date: Tue May 27 22:58:53 2014
New Revision: 63489
URL:
http://svn.reactos.org/svn/reactos?rev=63489&view=rev
Log:
[CRT]
Do not mark inp* and outp* as dllimport.
Modified:
trunk/reactos/include/crt/conio.h
Modified: trunk/reactos/include/crt/conio.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/conio.h?rev=63…
==============================================================================
--- trunk/reactos/include/crt/conio.h [iso-8859-1] (original)
+++ trunk/reactos/include/crt/conio.h [iso-8859-1] Tue May 27 22:58:53 2014
@@ -416,10 +416,10 @@
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 */