Browse Source

time.h -> ctime

Darryl Pogue 11 years ago
parent
commit
e4af3aff16
  1. 2
      Sources/Plasma/Apps/plClientPatcher/Pch.h
  2. 2
      Sources/Plasma/Apps/plFileSecure/main.cpp
  3. 2
      Sources/Plasma/Apps/plUruLauncher/Pch.h
  4. 2
      Sources/Plasma/FeatureLib/pfPython/Pch.h
  5. 2
      Sources/Plasma/FeatureLib/pfPython/plPythonPack.cpp
  6. 2
      Sources/Plasma/NucleusLib/pnUtils/pnUtTime.cpp
  7. 2
      Sources/Plasma/PubUtilLib/plFile/plEncryptedStream.cpp
  8. 3
      Sources/Plasma/PubUtilLib/plFile/plSecureStream.cpp
  9. 2
      Sources/Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.cpp
  10. 8
      Sources/Plasma/PubUtilLib/plUnifiedTime/plUnifiedTime.cpp
  11. 2
      Sources/Tools/plFontConverter/plFontConverterProc.cpp

2
Sources/Plasma/Apps/plClientPatcher/Pch.h

@ -52,7 +52,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsWindows.h"
#include <process.h>
#include <time.h>
#include <ctime>
#include "pnUtils/pnUtils.h"
#include "pnNetBase/pnNetBase.h"
#include "pnAsyncCore/pnAsyncCore.h"

2
Sources/Plasma/Apps/plFileSecure/main.cpp

@ -43,7 +43,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plProduct.h"
#include <time.h>
#include <ctime>
#include <string>
void print_version() {

2
Sources/Plasma/Apps/plUruLauncher/Pch.h

@ -52,7 +52,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsWindows.h"
#include <process.h>
#include <time.h>
#include <ctime>
#include <curl/curl.h>

2
Sources/Plasma/FeatureLib/pfPython/Pch.h

@ -55,7 +55,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <string>
// Platform Library Includes
#include <time.h>
#include <ctime>
#include <sys/types.h>
#include <sys/stat.h>

2
Sources/Plasma/FeatureLib/pfPython/plPythonPack.cpp

@ -42,7 +42,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <Python.h>
#include <marshal.h>
#include <time.h>
#include <ctime>
#include <string>
#include "HeadSpin.h"

2
Sources/Plasma/NucleusLib/pnUtils/pnUtTime.cpp

@ -42,7 +42,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "pnUtTime.h"
#if HS_BUILD_FOR_UNIX
#include <time.h>
#include <ctime>
#include <sys/time.h>
#endif

2
Sources/Plasma/PubUtilLib/plFile/plEncryptedStream.cpp

@ -43,7 +43,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsSTLStream.h"
#include <time.h>
#include <ctime>
#include <wchar.h>
static const uint32_t kDefaultKey[4] = { 0x6c0a5452, 0x3827d0f, 0x3a170b92, 0x16db7fc2 };

3
Sources/Plasma/PubUtilLib/plFile/plSecureStream.cpp

@ -40,14 +40,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include <string>
#include <ctime>
#include "plSecureStream.h"
#include "hsWindows.h"
#include "hsSTLStream.h"
#include <time.h>
#if !HS_BUILD_FOR_WIN32
#define INVALID_HANDLE_VALUE 0
#endif

2
Sources/Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.cpp

@ -45,7 +45,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "HeadSpin.h"
#include "hsWindows.h"
#include <time.h>
#include <ctime>

8
Sources/Plasma/PubUtilLib/plUnifiedTime/plUnifiedTime.cpp

@ -41,9 +41,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include <cfloat>
#include <cmath>
#include <ctime>
#include "plUnifiedTime.h"
#include "hsWindows.h"
#include "hsStream.h"
#if HS_BUILD_FOR_UNIX
#include <sys/time.h>
@ -55,11 +56,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#endif
#include <time.h>
#include "hsStream.h"
#if HS_BUILD_FOR_WIN32
//
// Converts Windows Time to Unified Time

2
Sources/Tools/plFontConverter/plFontConverterProc.cpp

@ -47,7 +47,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <shlobj.h>
#include <commdlg.h>
#include <commctrl.h>
#include <time.h>
#include <ctime>
#include "hsStream.h"
#include "hsResMgr.h"

Loading…
Cancel
Save