fpdfview.h contains one enum typedef whose members lack the usual FPDF prefix (and they're camel-case, not all capital)
```c
typedef enum _FPDF_DUPLEXTYPE_ {
DuplexUndefined = 0,
Simplex,
DuplexFlipShortEdge,
DuplexFlipLongEdge
} FPDF_DUPLEXTYPE;
```
Contrast this to other enum members:
```c
typedef enum {
FPDF_RENDERERTYPE_AGG = 0,
FPDF_RENDERERTYPE_SKIA = 1,
} FPDF_RENDERER_TYPE;
```
Is there a specific reason why FPDF_DUPLEXTYPE was defined this way, or is it an inadvertency?
AFAICS testing/tools/api_check.py enforce the prefix for functions, but not for enum members?