public interface IPreprocessorDirective
| Modifier and Type | Field and Description |
|---|---|
static int |
ppDefine
Standard preprocessor directive
#define. |
static int |
ppElif
Standard preprocessor directive
#elif. |
static int |
ppElse
Standard preprocessor directive
#else. |
static int |
ppEndif
Standard preprocessor directive
#endif. |
static int |
ppError
Standard preprocessor directive
#error. |
static int |
ppIf
Standard preprocessor directive
#if. |
static int |
ppIfdef
Standard preprocessor directive
#ifdef. |
static int |
ppIfndef
Standard preprocessor directive
#ifndef. |
static int |
ppIgnore
Special constant indicating to ignore the preprocessor directive.
|
static int |
ppImport
GNU preprocessor extension
#import. |
static int |
ppInclude
Standard preprocessor directive
#include. |
static int |
ppInclude_next
GNU preprocessor extension
#include_next. |
static int |
ppInvalid
Special constant indicating to mark the preprocessor directive as invalid.
|
static int |
ppPragma
Standard preprocessor directive
#pragma. |
static int |
ppUndef
Standard preprocessor directive
#undef. |
static int |
ppWarning
GNU preprocessor extension
#warning. |
static final int ppIgnore
static final int ppInvalid
static final int ppIf
#if.static final int ppIfdef
#ifdef.static final int ppIfndef
#ifndef.static final int ppElif
#elif.static final int ppElse
#else.static final int ppEndif
#endif.static final int ppInclude
#include.static final int ppDefine
#define.static final int ppUndef
#undef.static final int ppError
#error.static final int ppPragma
#pragma.static final int ppInclude_next
#include_next.
Search include file after the directory of the current file.static final int ppImport
#import.
Include only once.static final int ppWarning
#warning.
Similar to #error.Copyright (c) IBM Corp. and others 2004, 2020. All Rights Reserved.