2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix pnUtilsExe.

This commit is contained in:
Darryl Pogue
2012-01-29 01:44:23 -08:00
parent ad4ff5c262
commit 908ab6d632
2 changed files with 3 additions and 2 deletions

View File

@ -61,9 +61,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "pnUtPriQ.h"
#include "pnUtSync.h"
#include "pnUtTime.h"
#if HS_BUILD_FOR_WIN32
#include "pnUtTls.h"
#endif
#include "pnUtStr.h"
#include "pnUtRef.h"
#include "pnUtPath.h"

View File

@ -48,6 +48,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "../Pch.h"
#pragma hdrstop
#if HS_BUILD_FOR_WIN32
/*****************************************************************************
*
@ -105,3 +106,5 @@ void ThreadAssertCanBlock (const char file[], int line) {
if (ThreadLocalGetValue(s_tlsNoBlock))
ErrorAssert(line, file, "This thread may not block");
}
#endif