diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-05-04 14:53:09 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-05-04 14:53:09 -0700 |
commit | 2585a6bbd7dca65c4ee3c197937de9b0026a5e98 (patch) | |
tree | 9cb1822b6ef0586cf871596fdc73325a85d3d2e0 /core/include/fxge/fpf.h | |
parent | 447e2beb38d5bd8b71b1ddc3df448559dbd588af (diff) | |
download | pdfium-2585a6bbd7dca65c4ee3c197937de9b0026a5e98.tar.xz |
Kill FX_DEFINEHANDLE
I spent at least 2 minutes grep'ing for a class or struct (on the other
branch) that was delcared using this.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1129433002
Diffstat (limited to 'core/include/fxge/fpf.h')
-rw-r--r-- | core/include/fxge/fpf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/include/fxge/fpf.h b/core/include/fxge/fpf.h index 28d028cfbb..9fb38f8043 100644 --- a/core/include/fxge/fpf.h +++ b/core/include/fxge/fpf.h @@ -18,7 +18,9 @@ public: }; IFPF_DeviceModule* FPF_GetDeviceModule(); #define FPF_MATCHFONT_REPLACEANSI 1 -FX_DEFINEHANDLE(FPF_HFONT); +typedef struct FPF_HFONT_ { + FX_LPVOID pData; +}* FPF_HFONT; class IFPF_Font { public: |