프로그램 개발을 하다 보면 .pidl 파일에 include 혹은 import 구문을 넣고자 할 때가 있습니다. 이러한 경우 다음과 같이 말이죠.
#include "a/b/c.h" class MyStub // PIDL 컴파일 결과물 { ... }
이를 위해 PIDL 내용 안에서 다음과 같이 사용하세요.
#include "a/b/c.h" // for C++ language. semicolon is mandatory!
import com.mycompany.mygame; // for Java