dxrubynd 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ void DXRuby_raise( int errorcode, char *msg );
2
+ void InitMessageThread( void );
3
+ void ExitMessageThread( void );
4
+ void WindowCreateMessage( void );
5
+ int ResetMessage( void );
6
+ void ShowCursorMessage( void );
7
+ void HideCursorMessage( void );
8
+ void SetCursorMessage( int cursorname );
9
+ void SetImeEnable( int flag );
10
+ int GetImeEnable( void );
11
+
12
+ enum DXRubyErrorMessage
13
+ {
14
+ ERR_OUTOFMEMORY = 1,
15
+ ERR_INTERNAL,
16
+ ERR_NOEXISTSCREENMODE,
17
+ ERR_WINDOWCREATE,
18
+ ERR_D3DERROR,
19
+ ERR_DINPUTERROR,
20
+ ERR_MAX
21
+ };
22
+