@@ -1270,3 +1270,106 @@ BOOL WINAPI UnregisterDeviceNotification( HDEVNOTIFY handle )
1270
1270
1271
1271
return I_ScUnregisterDeviceNotification ( handle );
1272
1272
}
1273
+
1274
+ /*****************************************************************************
1275
+ * CloseTouchInputHandle (USER32.@)
1276
+ */
1277
+ BOOL WINAPI CloseTouchInputHandle ( HTOUCHINPUT handle )
1278
+ {
1279
+ FIXME ( "handle %p stub!\n" , handle );
1280
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1281
+ return FALSE;
1282
+ }
1283
+
1284
+ /*****************************************************************************
1285
+ * GetTouchInputInfo (USER32.@)
1286
+ */
1287
+ BOOL WINAPI GetTouchInputInfo ( HTOUCHINPUT handle , UINT count , TOUCHINPUT * ptr , int size )
1288
+ {
1289
+ FIXME ( "handle %p, count %u, ptr %p, size %u stub!\n" , handle , count , ptr , size );
1290
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1291
+ return FALSE;
1292
+ }
1293
+
1294
+ /**********************************************************************
1295
+ * IsTouchWindow (USER32.@)
1296
+ */
1297
+ BOOL WINAPI IsTouchWindow ( HWND hwnd , ULONG * flags )
1298
+ {
1299
+ FIXME ( "hwnd %p, flags %p stub!\n" , hwnd , flags );
1300
+ return FALSE;
1301
+ }
1302
+
1303
+ /*****************************************************************************
1304
+ * RegisterTouchWindow (USER32.@)
1305
+ */
1306
+ BOOL WINAPI RegisterTouchWindow ( HWND hwnd , ULONG flags )
1307
+ {
1308
+ FIXME ( "hwnd %p, flags %#x stub!\n" , hwnd , flags );
1309
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1310
+ return FALSE;
1311
+ }
1312
+
1313
+ /*****************************************************************************
1314
+ * UnregisterTouchWindow (USER32.@)
1315
+ */
1316
+ BOOL WINAPI UnregisterTouchWindow ( HWND hwnd )
1317
+ {
1318
+ FIXME ( "hwnd %p stub!\n" , hwnd );
1319
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1320
+ return FALSE;
1321
+ }
1322
+
1323
+ /*****************************************************************************
1324
+ * GetGestureInfo (USER32.@)
1325
+ */
1326
+ BOOL WINAPI CloseGestureInfoHandle ( HGESTUREINFO handle )
1327
+ {
1328
+ FIXME ( "handle %p stub!\n" , handle );
1329
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1330
+ return FALSE;
1331
+ }
1332
+
1333
+ /*****************************************************************************
1334
+ * GetGestureInfo (USER32.@)
1335
+ */
1336
+ BOOL WINAPI GetGestureExtraArgs ( HGESTUREINFO handle , UINT count , BYTE * args )
1337
+ {
1338
+ FIXME ( "handle %p, count %u, args %p stub!\n" , handle , count , args );
1339
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1340
+ return FALSE;
1341
+ }
1342
+
1343
+ /*****************************************************************************
1344
+ * GetGestureInfo (USER32.@)
1345
+ */
1346
+ BOOL WINAPI GetGestureInfo ( HGESTUREINFO handle , GESTUREINFO * ptr )
1347
+ {
1348
+ FIXME ( "handle %p, ptr %p stub!\n" , handle , ptr );
1349
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1350
+ return FALSE;
1351
+ }
1352
+
1353
+ /*****************************************************************************
1354
+ * GetGestureConfig (USER32.@)
1355
+ */
1356
+ BOOL WINAPI GetGestureConfig ( HWND hwnd , DWORD reserved , DWORD flags , UINT * count ,
1357
+ GESTURECONFIG * config , UINT size )
1358
+ {
1359
+ FIXME ( "handle %p, reserved %#x, flags %#x, count %p, config %p, size %u stub!\n" ,
1360
+ hwnd , reserved , flags , count , config , size );
1361
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1362
+ return FALSE;
1363
+ }
1364
+
1365
+ /**********************************************************************
1366
+ * SetGestureConfig (USER32.@)
1367
+ */
1368
+ BOOL WINAPI SetGestureConfig ( HWND hwnd , DWORD reserved , UINT count ,
1369
+ GESTURECONFIG * config , UINT size )
1370
+ {
1371
+ FIXME ( "handle %p, reserved %#x, count %u, config %p, size %u stub!\n" ,
1372
+ hwnd , reserved , count , config , size );
1373
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
1374
+ return FALSE;
1375
+ }
0 commit comments