From d21cddaa7548584bfcebefe9a03e857fee3a846b Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 23 Feb 2016 10:11:11 -0800 Subject: Remove many _CAPS structure names. They're technically not allowed because they are reserved for the preprocessor. Also get rid of LPC* typedefs along the way. Also provide a header for a data file containing many instance of these found along the way. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1722873002 . --- fpdfsdk/include/fx_systemhandler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpdfsdk/include/fx_systemhandler.h') diff --git a/fpdfsdk/include/fx_systemhandler.h b/fpdfsdk/include/fx_systemhandler.h index 224e0758f5..6d186a7bab 100644 --- a/fpdfsdk/include/fx_systemhandler.h +++ b/fpdfsdk/include/fx_systemhandler.h @@ -18,8 +18,8 @@ typedef void* FX_HWND; typedef void* FX_HMENU; typedef void (*TimerCallback)(int32_t idEvent); -typedef struct _FX_SYSTEMTIME { - _FX_SYSTEMTIME() +struct FX_SYSTEMTIME { + FX_SYSTEMTIME() : wYear(0), wMonth(0), wDayOfWeek(0), @@ -36,7 +36,7 @@ typedef struct _FX_SYSTEMTIME { FX_WORD wMinute; FX_WORD wSecond; FX_WORD wMilliseconds; -} FX_SYSTEMTIME; +}; // cursor style #define FXCT_ARROW 0 -- cgit v1.2.3