added TrGetSequentialStream and underlying code for a sequential stream that

outputs to trace output, also added a bunch of STG_ codes so that they're there
This commit is contained in:
Eric J. Bowersox
2013-06-01 00:17:52 -06:00
parent 5a7bc73aed
commit 2cca2531c8
5 changed files with 161 additions and 21 deletions

View File

@@ -39,6 +39,7 @@
#include <stdarg.h>
#include <comrogue/types.h>
#include <comrogue/scode.h>
#include <comrogue/stream.h>
#include <comrogue/compiler_macros.h>
#include <comrogue/internals/seg.h>
@@ -69,6 +70,7 @@ extern void TrWriteString8(PCSTR str);
extern void TrWriteWord(UINT32 uiValue);
extern HRESULT TrVPrintf8(PCSTR pszFormat, va_list pargs);
extern HRESULT TrPrintf8(PCSTR pszFormat, ...);
extern HRESULT TrGetSequentialStream(ISequentialStream **ppstm);
extern void TrAssertFailed(PCSTR pszFile, INT32 nLine);
extern void TrInfiniBlink(void);