|
-
November 13th, 2012, 12:13 PM
#1
0xc000007b on startup in 64bit debug mode, log file???, how to check which DLL ?
Hi,
I'm converting a 32bit app to 64bit in VS2008 and i'm having a startup issue when debugging in 64bit mode, how can you find what DLL it is aborting on? is there a log somewhere? it's not getting to the InitInstance in the app. thanks for your help.
'test.exe': Loaded 'C:\Windows\System32\rpcrt4.dll'
'test.exe': Loaded 'C:\Windows\System32\psapi.dll'
'test.exe': Loaded 'C:\Windows\System32\comdlg32.dll'
'test.exe': Loaded 'C:\Windows\System32\shlwapi.dll'
The program '[3928] test.exe: Native' has exited with code -1073741701 (0xc000007b).
I have loaded the exe in 64bit dependency walker and all shows 64bit except for the usual comdlg32.dll
----------------------
test.exe.manifest
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="amd64"
name="CompanyName.ProductName.YourApp"
type="win32"
/>
<description>Your application description here.</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="amd64"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|