We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71154e5 commit a123dbdCopy full SHA for a123dbd
request.go
@@ -40,6 +40,25 @@ import (
40
"unsafe"
41
)
42
43
+/** Resource data type.
44
+ * Used by SciterDataReadyAsync() function.
45
+ **/
46
+type SciterResourceType uint32
47
+
48
+// typedef enum SciterResourceType
49
+const (
50
+ RT_DATA_HTML SciterResourceType = iota
51
+ RT_DATA_IMAGE
52
+ RT_DATA_STYLE
53
+ RT_DATA_CURSOR
54
+ RT_DATA_SCRIPT
55
+ RT_DATA_RAW
56
+ RT_DATA_FONT
57
+ RT_DATA_SOUND // wav bytes
58
59
+ RT_DATA_FORCE_DWORD = 0xffffffff
60
+)
61
62
type REQUEST_RESULT int32
63
64
// enum REQUEST_RESULT
0 commit comments