CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: graphics.h

  1. #1
    Join Date
    Dec 2008
    Posts
    86

    graphics.h

    Hi...

    I am using the Visual Studio 2005 for "C" programming.... I just want to use some functions from Graphics.h but when I include this directory.... #include<graphics.h> I get this error....

    fatal error C1083: Cannot open include file: 'graphics.h': No such file or directory

    I am not sure but, is this library not available in the Visual studio????

    Please tell me if there is some other library available for graphics programming in C

  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: graphics.h

    Quote Originally Posted by scorrpeio View Post
    Hi...

    I am using the Visual Studio 2005 for "C" programming.... I just want to use some functions from Graphics.h
    No such header file.
    I am not sure but, is this library not available in the Visual studio????
    What is "graphics.h"? What compiler had this header? Was it one of those old MSDOS compilers?
    Please tell me if there is some other library available for graphics programming in C
    The header is "windows.h" and you use Win32 functions. That is how you produce "graphics" for the Windows operating system.

    Regards,

    Paul McKenzie

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured