-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathError.h
More file actions
36 lines (28 loc) · 824 Bytes
/
Error.h
File metadata and controls
36 lines (28 loc) · 824 Bytes
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
#ifndef _ERROR_H
#define _ERROR_H
#include "strct.h"
sdint2
Environment_CheckForError(
dm_Environment* environment, // environment to raise error in
dhandle errorHandle,
sdint2 handleType,
DPIRETURN rt, // status of last call
char* context
);
dm_Environment*
Environment_New();
sdint2
Environment_refresh_local_code(
dm_Environment* self, // environment object
dhcon con_handle,
sdint4 local_code
);
sdint2
Environment_refresh_local_langid(
dm_Environment* self, // environment object
dhcon con_handle,
sdint4 local_langid
);
extern PyTypeObject g_EnvironmentType;
extern PyTypeObject g_ErrorType;
#endif //_ERROR_H