Created
February 21, 2014 08:47
-
-
Save freeonterminate/9130832 to your computer and use it in GitHub Desktop.
DCCARM で POSIX が定義されているか実験
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit Unit1; | |
interface | |
uses | |
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, | |
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls; | |
type | |
TForm1 = class(TForm) | |
Button1: TButton; | |
procedure Button1Click(Sender: TObject); | |
private | |
{ private 宣言 } | |
public | |
{ public 宣言 } | |
end; | |
var | |
Form1: TForm1; | |
implementation | |
{$R *.fmx} | |
procedure TForm1.Button1Click(Sender: TObject); | |
begin | |
{$IFDEF POSIX} | |
ShowMessage('POSIX 定義されてるよ'); | |
{$ENDIF} | |
end; | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment