Windows error 0x000002D0, 720

Detailed Error Information

IMAGE_MACHINE_TYPE_MISMATCH_EXE[1]

MessageThe image file %hs is valid, but is for a machine type other than the current machine.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800702D0.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code720 (0x02d0)

Questions

1vote
0answers

Fingerprint authentication is not working in flutter

import 'package:flutter/material.dart'; import 'package:flutter_screen_lock/lock_screen.dart'; import 'package:local_auth/local_auth.dart'; import 'package:secret_keeper/screens/home_screen/Home.dart'; import 'package:flutter/services.dart'; import 'package:shared_preferences/shared_preferences.dart'; class Authentication extends StatefulWidget { @override _AuthenticationState createState() => _AuthenticationState(); } class _AuthenticationState extends State<Authentication> { String _password, _key = "Password"; bool _isFingerprintEnabled; String _fingerprintKey = "isFingerprintEnabled"; LocalAuthentication auth = LocalAuthentication(); bool _canCheckBiometric; List<BiometricType> _availableBiometric; String authorized = [...] read more
flutter
0votes
1answer

XMS.NET fails when receiving JMS message with RFH2 header at ParseJmsFolder

Our partner started using custom properties for messages being sent over IBM WebSphere MQ and our application developed using XMS.NET started to fail because of that. It turned out that the error is being thrown inside parsing the JMS envelope and inside the ParseJmsFolder method. This is the exception we [...] read more
.net
jms
ibm-mq
xms
rfh2
-2votes
1answer

How to create a temporary 2D variable for cuda kernel

My Ix and Iy declared in the CUDA global kernel will cause illegal memory access encounters due to unknown reasons. This is the code: #include "opencv2/opencv.hpp" #include "opencv2/highgui.hpp" #include <stdio.h> #include <string.h> #include <time.h> #include <omp.h> #include <stdlib.h> // Cuda #include <cuda.h> #include "cuda_runtime.h" #include "device_launch_parameters.h" #define CHECK_FINAL_RESULT //#define CHECK_LOADING_DATA [...] read more
multidimensional-array
cuda
global-variables

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0