1 /*---------------------------------------------------------------------------*
2   Project:  Cafe
3   File:     OSClipboard.h
4 
5   Copyright (C) Nintendo.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   *---------------------------------------------------------------------------*/
14 
15 #ifndef __OSCLIPBOARD_H__
16 #define __OSCLIPBOARD_H__
17 
18 #define OS_MAX_CLIPBOARD_SIZE 2048
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 BOOL OSCopyToClipboard(const void * ptr, u32 size);
25 BOOL OSCopyFromClipboard(void * ptr, u32 * pSize);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif  // __OSCLIPBOARD_H__
32 
33