SisoDisplay.h Source File

SisoDisplay.h
Go to the documentation of this file.
1
13#ifndef __SISO_DISPLAY_H
14#define __SISO_DISPLAY_H
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
36int CreateDisplay(const unsigned nDepth, const unsigned nWidth, const unsigned nHeight);
37
48void SetBufferWidth(int nId, const unsigned nWidth, const unsigned nHeight);
49
61void DrawBuffer(int nId, const void *ulpBuf, const int nNr, const char *cpStr);
62
71void CloseDisplay(int nId);
72
84int SetDisplayDepth(int nId, const unsigned depth);
85
86#ifdef __cplusplus
87}
88#endif
89
90#endif /* __SISO_DISPLAY_H */
void SetBufferWidth(int nId, const unsigned nWidth, const unsigned nHeight)
Sets a buffer width.
void DrawBuffer(int nId, const void *ulpBuf, const int nNr, const char *cpStr)
Draw buffer.
int CreateDisplay(const unsigned nDepth, const unsigned nWidth, const unsigned nHeight)
Create Display.
void CloseDisplay(int nId)
Closes a display.
int SetDisplayDepth(int nId, const unsigned depth)
Sets a display depth.