次の方法で共有


#DisablePPDirective プリプロセッサ ディレクティブ

#DisablePPDirective:    Directive

#DisablePPDirective ディレクティブは、有効なディレクティブを無効にします。 新しい GDL ファイルに、1 つ以上の新しいディレクティブ名と名前空間の競合がある古い GDL ファイルが含まれている場合は、ファイルを含める前に新しいディレクティブを無効にしてから、後で再度有効にすることができます。 ベース名は必須の値です。

このプリプロセッサ ディレクティブは、GDL の新機能です。

次のコード例は、このディレクティブを使用する方法を示しています。

#DisablePPDirective: duplicateDirective
#Include: "OlderFile.gdl"  *%  This file uses the name 
    *%  duplicateDirective because it does not expect that name to be interpreted by 
    *%  the preprocessor.
#EnablePPDirective: duplicateDirective
    *%  Reactivate  duplicateDirective  so it can be used by 
    *%  the newer host file.