このイメージは、4 つの別個に結合されたモジュール (プログラム A、B、C、および D) を示すブロック・ダイアグラムです。プログラム B は 2 つのサブプログラム (プログラム B1 および B2) を含んでいます。
ブロックには、コンパイラー・オプション、およびいくつかのタイプの 呼び出しが含まれています (以下の疑似コードを参照)。
プログラム A:
CBL NODLL, DYNAM Identification division. Program-id. A. * dynamic call to B Call "B"
プログラム B:
CBL NODLL, NODYNAM Identification division. Program-id. B. * internal calls Call "B1" Call "B2" CBL NODLL, DYNAM Identification division. Program-id. B1. * dynamic call to C Call "C" CBL DLL, NODYNAM Identification division. Program-id. B2. * DLL linkage to D Call "D"
プログラム C:
CBL NODLL,DYNAM Identification division. Program-id. C.
プログラム D.
CBL DLL, NODYNAM Identification division. Program-id. D.
図の説明の終わり。