在 Visual C++express 版本中创建项目
在 Visual Studio Express 2008 版本中,Visual C++ 标题下列出了许多类型的项目,例如 CLR、WIN32、GENERAL.. 从这些项目中,哪一个最适合我的目的?
我想写一个C程序。
我想将我的程序与液晶模拟器连接。我不想在 dos 提示符下看到输出,而是想在 lcd 上看到输出,因此我使用了函数 lij ginit(),它有助于与 lcd 交互。但问题是,我应该选择哪种类型的项目,这样可以方便我与lcd接口???
In Visual Studio Express 2008 edition there are many types of projects listed under the Visual C++ heading, such as CLR, WIN32, GENERAL.. From these, which one is most appropriate for my purposes?
I'm looking to write a C program.
I want to interface my programs with an lcd simulator. Instead of seeing the output on dos prompt, i want see my output on lcd, so i have used functions lij ginit(), which help for interfacing with lcd. But the question is , which type of project should I select, which will make it convenient for me to interface with lcd????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那里列出的项目类型只是根据特定需求预设设置的模板。如果您选择一个模板,您将看到一个说明,告诉您它的用途。由于您不需要 Windows 或控制台界面,因此请使用“常规”选项卡上的“空项目”。
The project types listed there are just templates that presets settings to a specific need. If you select a template, you will see a description telling you what its used for. Since you don't need Windows or console interface, go with an Empty Project on the General tab.