From 9d46ddf6c1327f2696c56e7c29f0e3b4ed0763c2 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 24 Feb 2016 14:00:04 -0500 Subject: Use stdint types for FX_WORD and FX_DWORD. This Cl changes the definition of FX_WORD and FX_DWORD to use the stdint types. This will allow changing the uses on a directory basis to the stdint types. R=thestig@chromium.org, tsepez@chromium.org Review URL: https://codereview.chromium.org/1727203002 . --- core/include/fxcrt/fx_system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/include/fxcrt') diff --git a/core/include/fxcrt/fx_system.h b/core/include/fxcrt/fx_system.h index 8471610864..e28099ed4a 100644 --- a/core/include/fxcrt/fx_system.h +++ b/core/include/fxcrt/fx_system.h @@ -68,8 +68,8 @@ extern "C" { #endif typedef void* FX_POSITION; // Keep until fxcrt containers gone -typedef unsigned short FX_WORD; // Keep - "an efficient small type" -typedef unsigned int FX_DWORD; // Keep - "an efficient type" +typedef uint16_t FX_WORD; // Keep - "an efficient small type" +typedef uint32_t FX_DWORD; // Keep - "an efficient type" typedef float FX_FLOAT; // Keep, allow upgrade to doubles. typedef double FX_DOUBLE; // Keep, allow downgrade to floats. typedef int FX_BOOL; // Keep, sadly not always 0 or 1. -- cgit v1.2.3