Why can't I find many structs definition in header files of PDFL SDK?
When I follow the header files in PDFL SDK, I found there are many structs which don't have a complete type.
For example, there is a definition:
typedef struct _t_PDDoc *PDDoc;
However, there is no definition of `struct _t_PDDoc`. And I also don't find any code which make it import.
So, how can the code complie successfully? What is the type indeed? When I try to use the `struct _t_PDDoc` directly in my code, there is always a mistake made by VS.
