This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.
This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
I have a simple wp8.1 app published in the store (universal app) but it crashed. So I downloaded the excel file containing crash info from https://dev.windowsphone.com/en-us/DownloadReport The crash(es) occur in the latest version of my app and the clients have 8.1 (because you cannot run universal apps otherwise) Here is [...] read more
My Macbook Pro (17" 2.2 Ghz Intel Core 2 Duo, OS X 10.4.11) often locks up when it resumes from sleep. I usually know I'm in trouble when the display brightness doesn't adjust right away. Then it runs for a few seconds until it stops responding again. The pointer works, [...] read more
Testing the following snippet using jmh. class A { public int test(int i) { long sum = 0L; for (int j=0; j<i; ++j) { sum += 1 << (j % 32); } return (int)sum; } } @State(Scope.Thread) public class MyBenchmark { public A a; int x; @Setup(Level.Trial) public void init() [...] read more
I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
I am trying to debug a kernel module. I have a piece of code to get the number of maps in a process: static int tmp_func(void){ int count = 0; struct mm_struct *mm = current->mm; struct vm_area_struct *map; down_read(&mm->mmap_sem); /* 1. just counts maps ... */ for (map = mm->mmap; [...] read more
I have a GUI program that opens a Windows console in a separate window to display output and accept user input. My development environment is Qt 4.7.1 with mingw. The console works fine, until I try to run the program in Qt's debugger (gdb); then, although AllocConsole succeeds, and GetStdHandle [...] read more
I want to read 4 bytes which are a little-endian encoding of an unsigned 32-bit integer, and assign the value to a Java int (Yes, in reality I will use a 'long', but in this case I 'know' that the unsigned value is never so big that it will overflow [...] read more
I've installed ConEmu on a Windows 10 64bits machine. It worked fine for a few hours. But today, while trying to start a simple cmd.exe shell, I get two errors message. 1. in a dialog box, it says that > 16 bits application is not supported. Impossible to start or [...] read more
I installed my app using a sideloaded package on 2 different computer. The app is installing, with the certificate and the Powershell script, but once it's installed when I try to launch it, the app is crashing instantly for no reason. I installed the app on the laptop I used [...] read more
I'm getting a error: First-chance exception at 0x0021F4F2 in Tetris.exe: 0xC0000005: Access violation reading location 0x000000D8. Unhandled exception at 0x0021F4F2 in Tetris.exe: 0xC000041D: An unhandled exception was encountered during a user callback. Here is my ColorGrid.cpp file, error happens when I run the application at function name const COLORREF ColorGrid::Index(int [...] read more