mirror of
https://github.com/rvtr/TwlIPL_commit-99.git
synced 2025-10-31 06:21:11 -04:00
60 lines
1.7 KiB
C
Executable File
60 lines
1.7 KiB
C
Executable File
/*---------------------------------------------------------------------------*
|
||
Project: NITRO-System - include - nnsys - mcs
|
||
File: print.h
|
||
|
||
Copyright 2004-2008 Nintendo. All rights reserved.
|
||
|
||
These coded instructions, statements, and computer programs contain
|
||
proprietary information of Nintendo of America Inc. and/or Nintendo
|
||
Company Ltd., and are protected by Federal copyright law. They may
|
||
not be disclosed to third parties or copied or duplicated in any form,
|
||
in whole or in part, without the prior written consent of Nintendo.
|
||
|
||
$Revision: 172 $
|
||
*---------------------------------------------------------------------------*/
|
||
|
||
#ifndef NNS_MCS_PRINT_H_
|
||
#define NNS_MCS_PRINT_H_
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
|
||
/* ========================================================================
|
||
ŠÖ<C5A0>”ƒvƒ<76>ƒgƒ^ƒCƒv
|
||
======================================================================== */
|
||
|
||
#if defined(NNS_FINALROM)
|
||
|
||
#define NNS_McsInitPrint(pBuffer, size) ((void)( (void)(pBuffer), (size) ))
|
||
|
||
#define NNS_McsPutString(string) ((void)0)
|
||
|
||
#define NNS_McsPrintf(fmt, ...) ((void)0)
|
||
|
||
/* #if defined(NNS_FINALROM) */
|
||
#else
|
||
|
||
void NNS_McsInitPrint(
|
||
void* pBuffer,
|
||
u32 size);
|
||
|
||
BOOL NNS_McsPutString(const char* string);
|
||
|
||
BOOL NNS_McsPrintf(
|
||
const char* format,
|
||
...);
|
||
|
||
/* #if defined(NNS_FINALROM) */
|
||
#endif
|
||
|
||
|
||
#ifdef __cplusplus
|
||
} /* extern "C" */
|
||
#endif
|
||
|
||
/* NNS_MCS_PRINT_H_ */
|
||
#endif
|
||
|