~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to src/struct_info.json

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2014-02-05 18:46:19 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20140205184619-bmxq31rw0cd3ar4u
Tags: 1.10.0~20140205~ef1e460-1
* New snapshot release
* Also install cmake / emscripten files. Thanks to Daniele Di Proietto
  for the patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1073
1073
            "UUID_TYPE_DCE_RANDOM" 
1074
1074
        ],
1075
1075
        "structs": {}
 
1076
    },
 
1077
    // ===========================================
 
1078
    // emscripten html5 library
 
1079
    // ===========================================
 
1080
    {
 
1081
        "file": "emscripten/html5.h",
 
1082
        "defines": [
 
1083
            "EMSCRIPTEN_EVENT_KEYPRESS",
 
1084
            "EMSCRIPTEN_EVENT_KEYDOWN",
 
1085
            "EMSCRIPTEN_EVENT_KEYUP",
 
1086
            "EMSCRIPTEN_EVENT_CLICK",
 
1087
            "EMSCRIPTEN_EVENT_MOUSEDOWN",
 
1088
            "EMSCRIPTEN_EVENT_MOUSEUP",
 
1089
            "EMSCRIPTEN_EVENT_DBLCLICK",
 
1090
            "EMSCRIPTEN_EVENT_MOUSEMOVE",
 
1091
            "EMSCRIPTEN_EVENT_WHEEL",
 
1092
            "EMSCRIPTEN_EVENT_RESIZE",
 
1093
            "EMSCRIPTEN_EVENT_SCROLL",
 
1094
            "EMSCRIPTEN_EVENT_BLUR",
 
1095
            "EMSCRIPTEN_EVENT_FOCUS",
 
1096
            "EMSCRIPTEN_EVENT_FOCUSIN",
 
1097
            "EMSCRIPTEN_EVENT_FOCUSOUT",
 
1098
            "EMSCRIPTEN_EVENT_DEVICEORIENTATION",
 
1099
            "EMSCRIPTEN_EVENT_DEVICEMOTION",
 
1100
            "EMSCRIPTEN_EVENT_ORIENTATIONCHANGE",
 
1101
            "EMSCRIPTEN_EVENT_FULLSCREENCHANGE",
 
1102
            "EMSCRIPTEN_EVENT_POINTERLOCKCHANGE",
 
1103
            "EMSCRIPTEN_EVENT_VISIBILITYCHANGE",
 
1104
            "EMSCRIPTEN_EVENT_TOUCHSTART",
 
1105
            "EMSCRIPTEN_EVENT_TOUCHEND",
 
1106
            "EMSCRIPTEN_EVENT_TOUCHMOVE",
 
1107
            "EMSCRIPTEN_EVENT_TOUCHCANCEL",
 
1108
            "EMSCRIPTEN_EVENT_GAMEPADCONNECTED",
 
1109
            "EMSCRIPTEN_EVENT_GAMEPADDISCONNECTED",
 
1110
            "EMSCRIPTEN_EVENT_BEFOREUNLOAD",
 
1111
            "EMSCRIPTEN_EVENT_BATTERYCHARGINGCHANGE",
 
1112
            "EMSCRIPTEN_EVENT_BATTERYLEVELCHANGE",
 
1113
            "EMSCRIPTEN_EVENT_WEBGLCONTEXTLOST",
 
1114
            "EMSCRIPTEN_EVENT_WEBGLCONTEXTRESTORED",
 
1115
 
 
1116
            "EMSCRIPTEN_RESULT_SUCCESS",
 
1117
            "EMSCRIPTEN_RESULT_DEFERRED",
 
1118
            "EMSCRIPTEN_RESULT_FAILED_NOT_DEFERRED",
 
1119
            "EMSCRIPTEN_RESULT_INVALID_TARGET",
 
1120
            "EMSCRIPTEN_RESULT_UNKNOWN_TARGET",
 
1121
            "EMSCRIPTEN_RESULT_INVALID_PARAM",
 
1122
            "EMSCRIPTEN_RESULT_NOT_SUPPORTED",
 
1123
            "EMSCRIPTEN_RESULT_FAILED",
 
1124
            "EMSCRIPTEN_RESULT_NO_DATA"
 
1125
        ],
 
1126
        "structs": {
 
1127
            "EmscriptenKeyboardEvent": [
 
1128
              "key",
 
1129
              "code",
 
1130
              "location",
 
1131
              "ctrlKey",
 
1132
              "shiftKey",
 
1133
              "altKey",
 
1134
              "metaKey",
 
1135
              "repeat",
 
1136
              "locale",
 
1137
              "charValue",
 
1138
              "charCode",
 
1139
              "keyCode",
 
1140
              "which"
 
1141
            ],
 
1142
            "EmscriptenMouseEvent": [
 
1143
              "timestamp",
 
1144
              "screenX",
 
1145
              "screenY",
 
1146
              "clientX",
 
1147
              "clientY",
 
1148
              "ctrlKey",
 
1149
              "shiftKey",
 
1150
              "altKey",
 
1151
              "metaKey",
 
1152
              "button",
 
1153
              "buttons",
 
1154
              "movementX",
 
1155
              "movementY",
 
1156
              "canvasX",
 
1157
              "canvasY"
 
1158
            ],
 
1159
            "EmscriptenWheelEvent": [
 
1160
              "mouse",
 
1161
              "deltaX",
 
1162
              "deltaY",
 
1163
              "deltaZ",
 
1164
              "deltaMode"
 
1165
            ],
 
1166
            "EmscriptenUiEvent": [
 
1167
              "detail",
 
1168
              "documentBodyClientWidth",
 
1169
              "documentBodyClientHeight",
 
1170
              "windowInnerWidth",
 
1171
              "windowInnerHeight",
 
1172
              "windowOuterWidth",
 
1173
              "windowOuterHeight",
 
1174
              "scrollTop",
 
1175
              "scrollLeft"
 
1176
            ],
 
1177
            "EmscriptenFocusEvent": [
 
1178
              "nodeName",
 
1179
              "id"
 
1180
            ],
 
1181
            "EmscriptenDeviceOrientationEvent": [
 
1182
              "timestamp",
 
1183
              "alpha",
 
1184
              "beta",
 
1185
              "gamma",
 
1186
              "absolute"
 
1187
            ],
 
1188
            "EmscriptenDeviceMotionEvent": [
 
1189
              "timestamp",
 
1190
              "accelerationX",
 
1191
              "accelerationY",
 
1192
              "accelerationZ",
 
1193
              "accelerationIncludingGravityX",
 
1194
              "accelerationIncludingGravityY",
 
1195
              "accelerationIncludingGravityZ",
 
1196
              "rotationRateAlpha",
 
1197
              "rotationRateBeta",
 
1198
              "rotationRateGamma"
 
1199
            ],
 
1200
            "EmscriptenOrientationChangeEvent": [
 
1201
              "orientationIndex",
 
1202
              "orientationAngle"
 
1203
            ],
 
1204
            "EmscriptenFullscreenChangeEvent": [
 
1205
              "isFullscreen",
 
1206
              "fullscreenEnabled",
 
1207
              "nodeName",
 
1208
              "id"
 
1209
            ],
 
1210
            "EmscriptenPointerlockChangeEvent": [
 
1211
              "isActive",
 
1212
              "nodeName",
 
1213
              "id"
 
1214
            ],
 
1215
            "EmscriptenVisibilityChangeEvent": [
 
1216
              "hidden",
 
1217
              "visibilityState"
 
1218
            ],
 
1219
            "EmscriptenTouchPoint": [
 
1220
              "identifier",
 
1221
              "screenX",
 
1222
              "screenY",
 
1223
              "clientX",
 
1224
              "clientY",
 
1225
              "pageX",
 
1226
              "pageY",
 
1227
              "isChanged",
 
1228
              "onTarget",
 
1229
              "canvasX",
 
1230
              "canvasY"
 
1231
            ],
 
1232
            "EmscriptenTouchEvent": [
 
1233
              "numTouches",
 
1234
              "ctrlKey",
 
1235
              "shiftKey",
 
1236
              "altKey",
 
1237
              "metaKey",
 
1238
              "touches"
 
1239
            ],
 
1240
            "EmscriptenGamepadEvent": [
 
1241
              "timestamp",
 
1242
              "axis",
 
1243
              "analogButton",
 
1244
              "digitalButton",
 
1245
              "connected",
 
1246
              "index",
 
1247
              "numAxes",
 
1248
              "numButtons",
 
1249
              "id",
 
1250
              "mapping"
 
1251
            ],
 
1252
            "EmscriptenBatteryEvent": [
 
1253
              "chargingTime",
 
1254
              "dischargingTime",
 
1255
              "level",
 
1256
              "charging"
 
1257
            ]
 
1258
        }
1076
1259
    }
1077
 
]
 
1260
 ]