mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-15 00:08:07 -04:00
27 lines
705 B
C
Executable File
27 lines
705 B
C
Executable File
// ======================================================================
|
|
//
|
|
// FirstUnicode.h
|
|
// copyright (c) 2001 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_PlatFirstUnicode_H
|
|
#define INCLUDED_PlatFirstUnicode_H
|
|
|
|
// ======================================================================
|
|
// stl unref inline func removed
|
|
|
|
#ifdef WIN32
|
|
|
|
// C4514 unreferenced inline/local function has been removed
|
|
// C4786 'identifier' : identifier was truncated to 'number' characters in the debug information
|
|
|
|
#pragma warning (disable:4514 4786)
|
|
|
|
#endif
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|
|
|