-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontext.h
36 lines (29 loc) · 1.31 KB
/
context.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _SAP_CONTEXT_H_
#define _SAP_CONTEXT_H_
#include "sap.h"
#ifdef __cplusplus
extern "C" {
#endif
SapXferContextWrapper SapXferContext_New();
void SapXferContext_Delete(SapXferContextWrapper ctx);
void SapXferContext_SetID(SapXferContextWrapper ctx, int id);
int SapXferContext_GetID(SapXferContextWrapper ctx);
void SapXferContext_SetBuffer(SapXferContextWrapper ctx, SapBufferWrapper buf);
SapBufferWrapper SapXferContext_GetBuffer(SapXferContextWrapper ctx);
void SapXferContext_SetHeight(SapXferContextWrapper ctx, int height);
int SapXferContext_GetHeight(SapXferContextWrapper ctx);
void SapXferContext_SetWidth(SapXferContextWrapper ctx, int width);
int SapXferContext_GetWidth(SapXferContextWrapper ctx);
void SapXferContext_SetPixelDepth(SapXferContextWrapper ctx, int depth);
int SapXferContext_GetPixelDepth(SapXferContextWrapper ctx);
void SapXferContext_SetCounter(SapXferContextWrapper ctx, long count);
long SapXferContext_GetCounter(SapXferContextWrapper ctx);
SapXferContextWrapper SapXferCallbackInfo_GetContext(SapXferCallbackInfoWrapper cbinfo);
SapAcqContextWrapper SapAcqContext_New();
void SapAcqContext_Delete(SapAcqContextWrapper ctx);
void SapAcqContext_SetID(SapAcqContextWrapper ctx, int id);
int SapAcqContext_GetID(SapAcqContextWrapper ctx);
#ifdef __cplusplus
}
#endif
#endif //_SAP_CONTEXT_H_