winio@ Graphics

Sid Kraft 46 Reputation points
2026-07-21T12:42:06.8+00:00

Programing in Visual Studio, C++ want to open a graphics window with winio@ whet directive headers, #include <....> do I need? Sid Kraft

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 84,671 Reputation points
    2026-07-21T16:24:03.91+00:00

    its not clear which winio library you refer to.

    • #include<...> refers a header file that is in the project include search path.
    • #include "path to file" is an explicit path to a header file. typically header files that are under the project folder

    typically after installation of the desired library you add the path to header files folder to the project include path. you also need to add the path to any library files for the link to work. header files are used for compile, library and object files for link.

    C/C++ is an older language, and the libraries do not have meta data (entry points, parameter definitions, etc). the .h files are the meta data. as .h files may depend on other .h files, you need to be sure they are all available to the compile step. the libraries are used in link step.

    as C/C++ uses .h, object and library files directly, there is no standard package manager. vcpkg is a Microsoft package manager, Conan is a open source written in python. for Linux dev, there is usually an apt package, and for MacOs a homebrew package.

    note: in general c/c++ libraries have a distribution link and setup instructions along with some documentation.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.