Exact Message:
Error 1 error C3861: 'SHOWERROR': identifier not found
My Includes:
#pragma once
// Exclude rarely-used stuff from Windows headers
#define WIN32_LEAN_AND_MEAN
#define SAFE_RELEASE(x) if( x ) { (x)->Release(); (x) = NULL; }
#define SAFE_DELETE(x) if( x ) { delete(x); (x) = NULL; }
#define SAFE_DELETE_ARRAY(x) if( x ) { delete [] (x); (x) = NULL; }
// Windows Header Files:
#include <windows.h>
#include <WindowsX.h>
// C/C++ RunTime Header Files
#include <cstdio>
#include <cstdlib>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
#include <iostream>
#include <cassert>
// DirectX Header Files
#include <d3d9.h>
Now, I've used SHOWERROR before. I just seem to have...misplaced it. Googling is useless as it keeps trying to put a space or underscore between show and error yielding no results that I'm looking for.
Any hint to throw me in the right direction would be fantastic. I have a feeling that it's incredibly obvious but I can't for the life of me figure out where it's defined.