diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-31 15:11:52 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-31 19:30:34 +0000 |
commit | 670c4fdea0acb9663145b96bec1fbf76279781df (patch) | |
tree | 3a28b6244430514b9702e964c24663c3ec31d7fd /core/fxcrt/fx_system.h | |
parent | 47a90b894ecca2d3547226169602d7f8729d564f (diff) | |
download | pdfium-670c4fdea0acb9663145b96bec1fbf76279781df.tar.xz |
Cleanup fx_basic_* files
Remove dead code, move code to namespaces where possible, cleanup some
single use items.
Change-Id: Ia734477ceb2105a1ed272463bd8220f1205a7ce9
Reviewed-on: https://pdfium-review.googlesource.com/12732
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_system.h')
-rw-r--r-- | core/fxcrt/fx_system.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/core/fxcrt/fx_system.h b/core/fxcrt/fx_system.h index ad7e6bbcd7..1f63e6d9aa 100644 --- a/core/fxcrt/fx_system.h +++ b/core/fxcrt/fx_system.h @@ -162,8 +162,6 @@ extern "C" { #define FXSYS_strupr _strupr #define FXSYS_stricmp _stricmp #define FXSYS_pow(a, b) (float)powf(a, b) -#define FXSYS_GetFullPathName GetFullPathName -#define FXSYS_GetModuleFileName GetModuleFileName size_t FXSYS_wcsftime(wchar_t* strDest, size_t maxsize, const wchar_t* format, @@ -183,7 +181,9 @@ size_t FXSYS_wcsftime(wchar_t* strDest, #define FXSYS_wcslwr _wcslwr #define FXSYS_wcsupr _wcsupr #endif // _NATIVE_WCHAR_T_DEFINED + #else // _FXM_PLATFORM == _FXM_PLATFORM_WINDOWS_ + int FXSYS_GetACP(); char* FXSYS_itoa(int value, char* str, int radix); int FXSYS_WideCharToMultiByte(uint32_t codepage, @@ -200,11 +200,6 @@ int FXSYS_MultiByteToWideChar(uint32_t codepage, int blen, wchar_t* buf, int buflen); -uint32_t FXSYS_GetFullPathName(const char* filename, - uint32_t buflen, - char* buf, - char** filepart); -uint32_t FXSYS_GetModuleFileName(void* hModule, char* buf, uint32_t bufsize); char* FXSYS_strlwr(char* str); char* FXSYS_strupr(char* str); int FXSYS_stricmp(const char*, const char*); @@ -225,7 +220,6 @@ int32_t FXSYS_atoi(const char* str); uint32_t FXSYS_atoui(const char* str); int32_t FXSYS_wtoi(const wchar_t* str); int64_t FXSYS_atoi64(const char* str); -int64_t FXSYS_wtoi64(const wchar_t* str); const char* FXSYS_i64toa(int64_t value, char* str, int radix); int FXSYS_round(float f); #define FXSYS_sqrt2(a, b) (float)sqrt((a) * (a) + (b) * (b)) |