0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++ builder > bcb6からの移行 > #include <vcl\...hpp>

Last updated at Posted at 2016-11-13
動作環境
C++ Builder XE4

C++ Builder 6のプロジェクトをXE4で見れる程度にする。
完全移行は難しいだろうから、途中でやめるかもしれない。
移行作業は自分が3年前(2013年6月)に調べた情報に基づく。間違いがある可能性もある。

#inlcude <vcl\ExtCtrls.hpp>

bcb6
# include <vcl\ExtCtrls.hpp>
# include <vcl\Buttons.hpp>
# include <vcl\StdCtrls.hpp>
# include <vcl\Controls.hpp>
# include <vcl\Forms.hpp>
# include <vcl\Graphics.hpp>
# include <vcl\Classes.hpp>
# include <vcl\SysUtils.hpp>
# include <vcl\Windows.hpp>
# include <vcl\System.hpp>
XE4
# include <ExtCtrls.hpp>
# include <Buttons.hpp>
# include <StdCtrls.hpp>
# include <Controls.hpp>
# include <Forms.hpp>
# include <Graphics.hpp>
# include <Classes.hpp>
# include <SysUtils.hpp>
# include <Windows.hpp>
# include <System.hpp>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?