Itsa me, quake3io!

This commit is contained in:
Zachary Slater 2005-08-26 04:48:05 +00:00
parent dbe4ddb103
commit 5b755058f5
1409 changed files with 798983 additions and 798983 deletions

112
q3radiant/RADBSP.CPP Normal file → Executable file
View file

@ -19,59 +19,59 @@ along with Foobar; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
//-----------------------------------------------------------------------------
// #includes follow...
//-----------------------------------------------------------------------------
//
#include "StdAfx.h" // For: Precompiled Headers
//
//-----------------------------------------------------------------------------
// #defines, consts, etc follow...
//-----------------------------------------------------------------------------
//
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
//-----------------------------------------------------------------------------
// Implementation follows...
//-----------------------------------------------------------------------------
//
// msvc 5.xx does not do well optimizing this code
#pragma optimize("",off)
HINSTANCE g_hQBSPDLL = NULL;
typedef void (WINAPI* PFN_QBSP)(char*, HWND, const char*);
void RunTools(char* pCommandLine, HWND hwnd, const char* pPAKFile)
{
static PFN_QBSP lpfnQBSP = NULL;
if (g_hQBSPDLL == NULL)
g_hQBSPDLL = ::LoadLibrary("qbspdll.dll");
else
{
::FreeLibrary(g_hQBSPDLL);
g_hQBSPDLL = ::LoadLibrary("qbspdll.dll");
lpfnQBSP = NULL;
}
if (g_hQBSPDLL != NULL)
{
if (lpfnQBSP == NULL && g_hQBSPDLL != NULL)
{
FARPROC pFunction = ::GetProcAddress(g_hQBSPDLL, "FullProcess");
lpfnQBSP = reinterpret_cast<PFN_QBSP>(pFunction);
}
if (lpfnQBSP != NULL)
{
(*lpfnQBSP)(pCommandLine, hwnd, pPAKFile);
}
}
}
#pragma optimize("",on)
//-----------------------------------------------------------------------------
// #includes follow...
//-----------------------------------------------------------------------------
//
#include "StdAfx.h" // For: Precompiled Headers
//
//-----------------------------------------------------------------------------
// #defines, consts, etc follow...
//-----------------------------------------------------------------------------
//
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
//-----------------------------------------------------------------------------
// Implementation follows...
//-----------------------------------------------------------------------------
//
// msvc 5.xx does not do well optimizing this code
#pragma optimize("",off)
HINSTANCE g_hQBSPDLL = NULL;
typedef void (WINAPI* PFN_QBSP)(char*, HWND, const char*);
void RunTools(char* pCommandLine, HWND hwnd, const char* pPAKFile)
{
static PFN_QBSP lpfnQBSP = NULL;
if (g_hQBSPDLL == NULL)
g_hQBSPDLL = ::LoadLibrary("qbspdll.dll");
else
{
::FreeLibrary(g_hQBSPDLL);
g_hQBSPDLL = ::LoadLibrary("qbspdll.dll");
lpfnQBSP = NULL;
}
if (g_hQBSPDLL != NULL)
{
if (lpfnQBSP == NULL && g_hQBSPDLL != NULL)
{
FARPROC pFunction = ::GetProcAddress(g_hQBSPDLL, "FullProcess");
lpfnQBSP = reinterpret_cast<PFN_QBSP>(pFunction);
}
if (lpfnQBSP != NULL)
{
(*lpfnQBSP)(pCommandLine, hwnd, pPAKFile);
}
}
}
#pragma optimize("",on)