Clone screen interface.h: Difference between revisions
(Created page with " #ifndef _CLONE_SCREEN_H #define _CLONE_SCREEN_H #ifdef __cplusplus extern "C" { #endif typedef int (*clone_screen_enable)(int nEnable); typedef int (*clo...") |
No edit summary |
||
Line 1: | Line 1: | ||
<syntaxhighlight lang="c"> | |||
#ifndef _CLONE_SCREEN_H | #ifndef _CLONE_SCREEN_H | ||
#define _CLONE_SCREEN_H | #define _CLONE_SCREEN_H | ||
Line 14: | Line 15: | ||
#endif | #endif | ||
#endif | #endif | ||
</syntaxhighlight> |
Latest revision as of 03:24, 9 April 2018
#ifndef _CLONE_SCREEN_H
#define _CLONE_SCREEN_H
#ifdef __cplusplus
extern "C"
{
#endif
typedef int (*clone_screen_enable)(int nEnable);
typedef int (*clone_screen_show)(int *pImg, int nImgLength, unsigned int nWidth, unsigned int nHeight);
#ifdef __cplusplus
}
#endif
#endif