Advertisement
Guest User

Untitled

a guest
Dec 29th, 2010
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1.  
  2. Compiling...
  3. teszt.c
  4. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(63) : warning C4996: 'getch': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getch. See online help for details.
  5. c:\program files\microsoft visual studio 9.0\vc\include\conio.h(145) : see declaration of 'getch'
  6. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(65) : warning C4996: 'getch': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getch. See online help for details.
  7. c:\program files\microsoft visual studio 9.0\vc\include\conio.h(145) : see declaration of 'getch'
  8. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(80) : warning C4018: '<' : signed/unsigned mismatch
  9. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(81) : warning C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
  10. c:\program files\microsoft visual studio 9.0\vc\include\string.h(79) : see declaration of 'strcat'
  11. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(86) : warning C4013: 'textcolor' undefined; assuming extern returning int
  12. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(86) : warning C4013: 'textbackground' undefined; assuming extern returning int
  13. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(94) : warning C4013: 'wherex' undefined; assuming extern returning int
  14. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(95) : warning C4013: 'wherey' undefined; assuming extern returning int
  15. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(96) : warning C4013: 'gotoxy' undefined; assuming extern returning int
  16. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(96) : warning C4996: 'cprintf': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _cprintf. See online help for details.
  17. c:\program files\microsoft visual studio 9.0\vc\include\conio.h(138) : see declaration of 'cprintf'
  18. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(180) : warning C4996: 'ltoa': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _ltoa. See online help for details.
  19. c:\program files\microsoft visual studio 9.0\vc\include\stdlib.h(863) : see declaration of 'ltoa'
  20. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(181) : warning C4018: '<' : signed/unsigned mismatch
  21. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(213) : warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
  22. c:\program files\microsoft visual studio 9.0\vc\include\string.h(144) : see declaration of 'strncat'
  23. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(226) : warning C4244: '=' : conversion from 'double' to 'long', possible loss of data
  24. d:\dokumentumok\visual studio 2008\projects\teszt\teszt\teszt.c(234) : warning C4013: 'clrscr' undefined; assuming extern returning int
  25. Compiling manifest to resources...
  26. Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1
  27. Copyright (C) Microsoft Corporation. All rights reserved.
  28. Linking...
  29. teszt.obj : error LNK2019: unresolved external symbol _textbackground referenced in function _NormalIr
  30. teszt.obj : error LNK2019: unresolved external symbol _textcolor referenced in function _NormalIr
  31. teszt.obj : error LNK2019: unresolved external symbol _gotoxy referenced in function _Ir
  32. teszt.obj : error LNK2019: unresolved external symbol _wherey referenced in function _Ir
  33. teszt.obj : error LNK2019: unresolved external symbol _wherex referenced in function _Ir
  34. teszt.obj : error LNK2019: unresolved external symbol _clrscr referenced in function _main
  35. D:\dokumentumok\Visual Studio 2008\Projects\teszt\Debug\teszt.exe : fatal error LNK1120: 6 unresolved externals
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement