Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Unity 4.1 - Game.exe has stopped working after Application.Quit()

Discussion in 'Editor & General Support' started by any_user, Mar 14, 2013.

  1. any_user

    any_user

    Joined:
    Oct 19, 2008
    Posts:
    374
    After upgrading to unity 4.1 my game crashes with the error message 'Game.exe has stopped working' after I quit the game with Application.Quit(). The error doesn't appear when I close the game by pressing on the 'x' button (in windowed mode) or by alt+f4. on mac it also works fine.

    anyone else experiencing this issue?
     
  2. CreativeChris

    CreativeChris

    Unity Technologies

    Joined:
    Jun 7, 2010
    Posts:
    457
    Please submit a bug report with an attached project and build then send me the 6-digit case id and I'll have a look for you.

    Thanks,
    Chris
     
  3. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    Same issue here
     
  4. montyfi

    montyfi

    Joined:
    Aug 3, 2012
    Posts:
    548
    The same issue, windows 64 build - crash on Application.Quit()
     
  5. CreativeChris

    CreativeChris

    Unity Technologies

    Joined:
    Jun 7, 2010
    Posts:
    457
    Hi guys,

    Don't just reply with "same issue" - Please one of you submit a bug report, details in my previous post above.

    Thanks,
    Chris
     
  6. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    I have a 7 gb project folder, but managed to duplicate the bug in a test project by extracting my menu and intro scene into a new project.
    Submited the bug as case 533156
     
  7. Klaus-Eiperle

    Klaus-Eiperle

    Joined:
    Mar 10, 2012
    Posts:
    41
    Same Issue here... How can I view these bug report or the solution for that problem ?
     
  8. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    Not sure if you can, you can only follow cases you submitted?
    I think the solotion is waiting for a Unity update if this is a bug.

    So it depends how important they rate this,
    I have gfx issues that I rather see fixed then a end game error that are in queue since 3.5 and 4.0 ...
    Just to say this can take a while.

    If the fault is on our end I will share any solution they come up with.
     
  9. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    I had a responce today that says this was fixed in 4.1.
    But for me this issue started with 4.1

    *Edit*

    Ok there is a 4.1.2 out now and the fix will be in this or a next release.
     
    Last edited: Apr 4, 2013
  10. FiveFingers

    FiveFingers

    Joined:
    Oct 15, 2009
    Posts:
    541
    Same issue on an almost empty project standalone. Close the window, or invoking by code Application.Quit() the program crashes. O__o
    Unity pro 4.1.2f here

    You could still do it with System.Diagnostic.Process.GetCurrenProcess().Kill() but

    Be carefull with this hack will work ith the Editor, which means, that it will force Unity shutdown at once(save your stuff!)
     
    Last edited: May 18, 2013
  11. nospam94

    nospam94

    Joined:
    Dec 4, 2012
    Posts:
    10
    Hi,

    I have same trouble, all was ok before i try 4.1.2 and now 4.1.3 :(

    I have bought unity pro and can't afford to deliver commercial product that hangs ... :(

    hopefully, it crashes after playing. it crashes with alt_f4 (it crash when quit). All is ok under Editor :confused:

    Would next release be Named "Blank Screen" ? I didn't have seen a blue screen on Windows Os for a long longtime now, Unity wants to remind me such trouble ?

    Hope you will find solution quickly. :D

     
  12. Phi01

    Phi01

    Joined:
    May 27, 2013
    Posts:
    1
    I'm getting this also. There is a workaround. Instead of "Application.Quit();" use "System.Diagnostics.Process.GetCurrentProcess().Kill();". But be warned if you use this in the editor it'll kill you're Unity Process, so make sure to save your work before clicking any Exit button from the Editor. It's better to encapsulate it all into an if statement. "if (Application.isWebPlayer == false Application.isEditor == false)".
     
  13. fallingbrickwork

    fallingbrickwork

    Joined:
    Mar 16, 2009
    Posts:
    1,072
    UT, is there any update on this?? Please!

    I have been updating through each version and it's still there in 4.1.5.
     
  14. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    I am told it will be fixed in 4.2
     
  15. Disastorm

    Disastorm

    Joined:
    Jun 16, 2013
    Posts:
    132
    I've got this issue as well in Unity Basic. I also just started using Unity last week so its a brand new project and everything. However, unlike the original poster, I get the crash error after closing my app not only with Application.Quit but also Alt+F4 and clicking the X. Occurs on Windows 7 building both x86 or x86_64.
     
    Last edited: Jun 24, 2013
  16. KnuckleCracker

    KnuckleCracker

    Joined:
    Dec 27, 2011
    Posts:
    80
    Wow... what a lovely bug. I've waited many moon to finally make the hop from Unity3.5 to Unity 4 (bought Unity 4 last year before it was released), hoping fundamental engine issues would be fixed. Now I need to get out my tee-shirt that says, "I upgraded Unity and all I got was another fundamental engine bug" :). I jest, but if this has really been present through most of the 4.1 builds, I'm perplexed by how this can be allowed to persist so long.

    Anyway, the workaround isn't as clean in my case. I intercept application close and do a save game. My game can be closed by the window close button (when in a window), but a keyboard shortcut, or by a menu button. It the last two cases, I call Application.Quit().

    So to work around this, I still call Application.Quit(). I have a 'void OnApplicationQuit() {}' function in my main game class. Inside that, I auto save, call Application.CancelQuit(), then call System.Diagnostics.Process.GetCurrentProcess().Kill().

    Actually, it's more complex than that since I have a popup dialog to confirm the exit, there are different parts to the game where you can exit (within a mission, within 'space', within the main menu... and all have different exit handlers. But in general, the workaround seems to be:

    1: Still call Application.Quit() (this is so I can intercept the application exit. If I didn't care about this, I'd just make the process Kill call).

    2: Implement OnApplicationQuit and within it call Application.CancelQuit(), then System.Diagnostics.Process.GetCurrentProcess().Kill().
     
  17. Cascho01

    Cascho01

    Joined:
    Mar 19, 2010
    Posts:
    1,347
    I have the same bug, but nearly found out what it causes:

    It´s the amount of trees on terrain.
    As soon as I delete the trees the errormessage doesn´t appear anymore after quit.

    This happens to me, may be it´s something else....
     
    Last edited: Jun 27, 2013
  18. RayWolf

    RayWolf

    Joined:
    Mar 24, 2012
    Posts:
    87
    u serious about the trees beeing the reason for this application quit error thingy here?
     
  19. Cascho01

    Cascho01

    Joined:
    Mar 19, 2010
    Posts:
    1,347
    Yes, at least for one project where I intensively figuered out the reason by deactivating scripts and objects step by step.
    As soon as I deactivate trees or no trees have been rendered in runtime, the error message does not appear.

    But maybe on other projects, other things cause this error.

    You can try and simply deactivate trees to see if it also fits to your project.
     
  20. KnuckleCracker

    KnuckleCracker

    Joined:
    Dec 27, 2011
    Posts:
    80
    No. I don't have any "trees" or anything like that in my project. In my case (and I suspect most others) it seems to have to do with how much cleanup has to occur during shutdown. That's a guess, though, since it seems to happen more frequently based on how much geometry/objects/etc. got created by a scene. It's an inconsistent but frequent occurrence in my game. It also happens sometimes even when pressing the window close button (not just when calling Application.Quit). So I have to implement OnApplicationQuit and call Kill instead.

    Interestingly, the game exits a whole lot faster by calling Kill. So this workaround makes me nervous. I also wonder how it is even possible for anyone to be shipping anything at all with Unity 4? There is no way I would ship a game, that has a large customer base, that crashes with this frequency on exit. So either everyone is implementing this workaround or no one is shipping with Unity 4. If everyone is implementing this workaround, then it is perplexing that this tiny little topic on this high volume support board is the only mention I've found of this issue.
     
  21. JDMulti

    JDMulti

    Joined:
    Jan 4, 2012
    Posts:
    384
    This must be indeed a bug. I've created 2 applications with Unity the last 2 months, and this Application.Quit works, but after the Unity program has quit, a popup comes up with "Application not responding" or another popup saying the application had an unexpected quit.
    I have no clue where this comes from, but it need to be sorted out.

    I have customers calling me the unity program crashed on exit and such, while I can't do anything about it. While it does quit, but it seams that windows doesn't recognize it as a general quit, but rather like a forced task ending like you would do with CTRL + ALT + DELETE , click unity and stop proces :p

    I also tried to find the issue with Visual Studio, and came across this error message afther: Application.Quit

    ------
    Unhandled exception at 0x77a815de in Duin Maquette.exe: 0xC0000005: Access violation reading location 0x201695dc.
    ------

    and found this:

    ------
    ntdll.dll!77a815de()
    [ Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll ]
    ------

    I don't know what it is, but maybe it helps out finding the problem. Currently I can't find a work around for it. Even turning off trees and have a coroutine wait before quitting and such, no fixes =(
     
    Last edited: Jul 2, 2013
  22. RayWolf

    RayWolf

    Joined:
    Mar 24, 2012
    Posts:
    87
    Like recommended in this thread, I will also try to find out what causes it, by deactivating scripts and gameobjects. bad is..its alot of them :D
    If this is a unity bug Im pretty disappointed.
     
  23. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    It is a unity bug,
    I have the issue on new projects with standard assets and it will be fixed in 4.2
     
  24. fabio1955

    fabio1955

    Joined:
    Nov 11, 2009
    Posts:
    72
    The workaround:
    System.Diagnostic.Process.GetCurrenProcess().Kill( );
    It is OK but, because you use System.Diagnostic, if you use Unity Debug, this will produce the error:
    Ambiguous reference 'Debug': System.Diagnostics.Debug, UnityEngine.Debug.
    Also you could, by mistake, terminate the Unity Editor.
    Then I suggest to build a "terminator" script with:
    Code (csharp):
    1.  
    2. import System.Diagnostics;
    3. var askQuit boolean;
    4. function Update () {
    5. if (!Application.isEditor)
    6. {
    7.    if(askQuit )System.Diagnostics.Process.GetCurrentProcess().Kill();
    8.  
    9. }
    Hope this can be usefull :)
     
  25. Bluestrike

    Bluestrike

    Joined:
    Sep 26, 2009
    Posts:
    256
    With 4.2 released yesterday the issue is gone :)
     
  26. scarletsnake

    scarletsnake

    Joined:
    Nov 27, 2009
    Posts:
    106
    Yes sir. Thankfully the latest release fixed it for me.
     
  27. kenlem

    kenlem

    Joined:
    Oct 16, 2008
    Posts:
    1,630
    This seems problem seems to back in 4.3.4f1. My windows store app crashes with an unhanded example when I call Application.Quit.

    I'm using 8.1 and building a Windows Store app.

    I implemented the fix found in this thread but can not compile the following code.

    I get the error:
    "The type or namespace 'Process' does not exist in the namespace 'System.Diagnostics (Are you missing an assembly reference?)

    Code (csharp):
    1.  
    2. using UnityEngine;
    3. using System.Collections;
    4. using System.Diagnostics;
    5.  
    6. public class WindowsQuit : MonoBehaviour {
    7.  
    8.     public static void QuitApplication()
    9.     {
    10.         #if UNITY_WP8 || UNITY_METRO
    11.         if (!Application.isEditor) {
    12.             System.Diagnostics.Process.GetCurrentProcess().Kill();
    13.         }
    14.         #endif
    15.     }
    16. }
    17.  
    Any suggestions?
     
  28. susupanda

    susupanda

    Joined:
    Apr 25, 2014
    Posts:
    2
    Unity Player [version: Unity 3.5.6f4_b81e0151ec83]

    atioglxx.dll caused an Access Violation (0xc0000005)
    in module atioglxx.dll at 0023:62195016.

    Error occurred at 2014-04-24_230636.
    E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction.exe, run by yuw142.
    17% memory in use.
    0 MB physical memory [0 MB free].
    0 MB paging file [0 MB free].
    0 MB user address space [3766 MB free].
    Read from location 0000001c caused an access violation.

    Context:
    EDI: 0xffffffff ESI: 0x063a7d5c EAX: 0x00000000
    EBX: 0x063a7c84 ECX: 0x063a7c84 EDX: 0x00000000
    EIP: 0x62195016 EBP: 0x0018f4a0 SegCs: 0x00000023
    EFlags: 0x00210206 ESP: 0x0018f47c SegSs: 0x0000002b

    Bytes at CS:EIP:
    8b 40 1c 8b 80 c4 24 03 00 ff a0 58 05 00 00 8d

    Stack:
    0x0018f47c: 0069d17a 000084c0 00000008 00000000 z.i.............
    0x0018f48c: 0069d6ca 00000301 00000000 03df9b08 ..i.............
    0x0018f49c: 063a68d4 0018f4cc 006a0bc0 063a50d0 .h:.......j..P:.
    0x0018f4ac: 00000300 005f3983 000002d8 ffffffff .....9_.........
    0x0018f4bc: 00000001 0ac30078 005182d5 006d6b74 ....x.....Q.tkm.
    0x0018f4cc: 0018f4e8 006a0ca6 03df9b08 00000000 ......j.........
    0x0018f4dc: 03df9b08 00000300 760114d0 0018f550 ...........vP...
    0x0018f4ec: 006a0d40 03df9b08 00000000 03ddf9e8 @.j.............
    0x0018f4fc: 0060fd7b 03ddf9e8 00000000 00b73594 {.`..........5..
    0x0018f50c: 9b7e5ab0 fffffffe 76302111 00610a5f .Z~......!0v_.a.
    0x0018f51c: 00000000 00000480 00000400 00000004 ................
    0x0018f52c: 00000400 00000004 0018f54c 00000000 ........L.......
    0x0018f53c: 00000004 00000004 00000004 00000000 ................
    0x0018f54c: 0018f5cc 0018f5cc 0056b653 00000400 ........S.V.....
    0x0018f55c: 01000300 00000000 00000000 00000010 ................
    0x0018f56c: 00000000 00000000 0000002b 03dfa648 ........+...H...
    0x0018f57c: 0018f598 0042a048 00000000 00000020 ....H.B..... ...
    0x0018f58c: 0000002f 0000002b 03dfa230 0018f5c8 /...+...0.......
    0x0018f59c: 0054b086 0018f5c0 0000001f 0000001f ..T.............
    0x0018f5ac: 0000002b 03dfa68c 00000010 00000000 +...............
    0x0018f5bc: 00000000 0000001e 0000001f 0018fef8 ................
    0x0018f5cc: 0018fef8 006150c2 fffffffe 00000000 .....Pa.........
    0x0018f5dc: 00000001 003a0045 0041005c 00610063 ....E.:.\.A.c.a.
    0x0018f5ec: 00650064 0079006d 0032005c 00310030 d.e.m.y.\.2.0.1.
    0x0018f5fc: 00460032 004c0041 005c004c 00450041 2.F.A.L.L.\.A.E.
    0x0018f60c: 00390035 00460037 0057005c 006e0061 5.9.7.F.\.W.a.n.
    0x0018f61c: 005f0067 00720047 006e0061 00200064 g._.G.r.a.n.d. .
    0x0018f62c: 0061004d 00740073 00720065 0049005f M.a.s.t.e.r._.I.
    0x0018f63c: 0074006e 00720065 00630061 00690074 n.t.e.r.a.c.t.i.
    0x0018f64c: 006e006f 0044005f 00740061 005c0061 o.n._.D.a.t.a.\.
    0x0018f65c: 0075006f 00700074 00740075 006c005f o.u.t.p.u.t._.l.
    0x0018f66c: 0067006f 0074002e 00740078 00180000 o.g...t.x.t.....
    0x0018f67c: 0018f6a4 00000000 00020000 0018f6a4 ................
    0x0018f68c: 0018f6a4 0018f6a4 00000002 00000002 ................
    0x0018f69c: 0018f6b8 00000002 00180000 76b71b44 ............D..v
    0x0018f6ac: 76b71b44 0018f808 7704f201 0018f6e4 D..v.......w....
    0x0018f6bc: 0018f890 0018fa30 7704f26c 7704f201 ....0...l..w...w
    0x0018f6cc: 0018f6f8 00800078 0018f764 7704f26c ....x...d...l..w
    0x0018f6dc: 76b71b44 00000000 00000000 00000000 D..v............
    0x0018f6ec: 00000000 00000000 00000000 00000000 ................
    0x0018f6fc: 007a0078 0018fb04 0018f878 00000000 x.z.....x.......
    0x0018f70c: 00000000 00000000 00000000 00000000 ................
    0x0018f71c: 00000000 00000000 0018f740 74d8a53a ........@...:..t
    0x0018f72c: 00000000 74d8d398 74d8d0ef 0018f9bd .......t...t....
    0x0018f73c: 00000001 0018f9d0 74d8d0ba 00000000 ...........t....
    0x0018f74c: 0018fca8 0018fca8 74d8cf18 0018f7f8 ...........t....
    0x0018f75c: 0018f7f8 00000007 003a0045 0041005c ........E.:.\.A.
    0x0018f76c: 00000000 00000000 0018f9f4 00000007 ................
    0x0018f77c: 00000000 00000000 74e22bd0 00261970 .........+.tp..
    0x0018f78c: 002607d0 00390001 00000000 00000008 .....9.........
    0x0018f79c: 00000000 761d9118 00720047 00000008 .......vG.r.....
    0x0018f7ac: 0018fa6c 00000007 0018f9bd fffffff9 l...............
    0x0018f7bc: 0018f7dc 00000008 0018f940 00f04234 ........@...4B..
    0x0018f7cc: 00000016 00f54e60 00f00000 00f552f0 ....`N.......R..
    0x0018f7dc: 00f54e20 00f00000 00f552f0 00000000 N.......R......
    0x0018f7ec: 0000007c 0018f8dc 00000016 00f00000 |...............
    0x0018f7fc: 00f54e60 0018f8dc 77053ca4 77053cd3 `N.......<.w.<.w
    0x0018f80c: 77077e79 0018fa7c 00f00234 00f00000 y~.w|...4.......
    0x0018f81c: 00f00150 00f00000 00f54e60 00000000 P.......`N......
    0x0018f82c: 7c00007c 00d2c000 00f54f18 00f55b68 |..|.....O..h[..
    0x0018f83c: 00f000c4 000003e0 00f00000 00040000 ................
    0x0018f84c: 00f54e60 0018f940 770538ce 00f00138 `N..@....8.w8...
    0x0018f85c: 770538aa 77077fe5 00000000 00f00000 .8.w...w........
    0x0018f86c: 00000007 00f54d98 00f00000 00f552f0 .....M.......R..
    0x0018f87c: 00f54e20 00000000 00000000 00000000 N..............
    0x0018f88c: 000000a4 0018f97c 00000007 00f00000 ....|...........
    0x0018f89c: 00f54d98 0018f97c 77053ca4 77053cd3 .M..|....<.w.<.w
    0x0018f8ac: 77077fd9 0018fa74 00f001bc 00f00000 ...wt...........
    0x0018f8bc: 00f00150 00f54db8 00f00000 00f05298 P....M.......R..
    0x0018f8cc: 0018fabc 770971f5 92000290 000000a4 .....q.w........
    0x0018f8dc: 00000000 00f00150 0000000c 00f55b68 ....P.......h[..
    0x0018f8ec: 00f54db8 000000ab 00f00000 00f54d98 .M...........M..
    0x0018f8fc: 00000000 7704e38c 77077f2d 0018fa70 .......w-..wp...
    0x0018f90c: 00f001ac 00f00000 00f00000 00f00000 ................
    0x0018f91c: 00de0006 0000004d 0018f9ac 7703faa8 ....M..........w
    0x0018f92c: 0018fa78 0018f964 7705624f 77056254 x...d...Ob.wTb.w
    0x0018f93c: 77077fc1 0018fa78 7703faa8 0018f9ac ...wx......w....
    0x0018f94c: 0018f93c 7703faba 0018fab8 770971f5 <......w.....q.w
    0x0018f95c: 001b487d fffffffe 77056254 76301edc }H......Tb.w..0v
    0x0018f96c: 00000000 75fc0af5 00000100 00f55b60 .......u....`[..
    0x0018f97c: 00f00000 00f56fe0 0018faa8 0000000c .....o..........
    0x0018f98c: 0018faa4 00000000 00000190 0018fa84 ................
    0x0018f99c: 00000100 00f00000 00f55b60 0018fa84 ........`[......
    0x0018f9ac: 77053ca4 77053cd3 77077c21 00078000 .<.w.<.w!|.w....
    0x0018f9bc: 00000000 00f00000 00f05298 006f006f .........R..o.o.
    0x0018f9cc: 00250074 00f05298 00730079 00f052fc t.%..R..y.s..R..
    0x0018f9dc: 0033006d 00000190 00000000 00f05298 m.3..........R..
    0x0018f9ec: 00000210 00f55b68 0064002e 00000290 ....h[....d.....
    0x0018f9fc: 00f54d98 00000100 00000007 00f54d98 .M...........M..
    0x0018fa0c: 00f00000 00f552f0 00000000 79000079 .....R......y..y
    0x0018fa1c: 00f54f30 00000000 000000a4 0018fb14 0O..............
    0x0018fa2c: 00000000 000007ff 00f54d98 92000290 .........M......
    0x0018fa3c: 00f000c4 00000001 77077db1 00800002 .........}.w....
    0x0018fa4c: 00000008 00f55b68 00f55b68 00f55b63 ....h[..h[..c[..
    0x0018fa5c: 00000000 00f05298 00f00000 09304a00 .....R.......J0.
    0x0018fa6c: 0018f9b4 000000a4 0018fb44 770971f5 ........D....q.w
    0x0018fa7c: 001b4e35 fffffffe 77053cd3 77053cfe 5N.......<.w.<.w
    0x0018fa8c: 000007f8 00000800 00f55b62 00f55b60 ........b[..`[..
    0x0018fa9c: 00078000 00f09048 0000000b 00f001ac ....H...........
    0x0018faac: 00f00000 00f00000 00000800 00de0006 ................
    0x0018fabc: 0000004e 0018fb48 7703faa8 0018fc14 N...H......w....
    0x0018facc: 0018fb00 7705624f 77056254 77077da5 ....Ob.wTb.w.}.w
    0x0018fadc: 0018fc14 7703faa8 0018fb48 00000032 .......wH...2...
    0x0018faec: 00f54d98 00f00000 00f552f0 00000003 .M.......R......
    0x0018fafc: 00000000 00000002 00f55b68 00f40e58 ........h[..X...
    0x0018fb0c: 00f08fb8 00020032 00000001 0000012c ....2.......,...
    0x0018fb1c: 00000006 00000000 00000000 00f40e60 ............`...
    0x0018fb2c: 000000fa 00000005 00f09480 00000005 ................
    0x0018fb3c: 00000000 00000032 00f56348 0018fbe4 ....2...Hc......
    0x0018fb4c: 0000000d 02b95ac0 02b90000 02b95fe0 .....Z......._..
    0x0018fb5c: 7704e38c 77077d41 00f54f0c 00000000 ...wA}.w.O......
    0x0018fb6c: 00000097 0018fc5c 0000000d 02b90000 ....\...........
    0x0018fb7c: 02b95ac0 0018fc5c 77053ca4 77053cd3 .Z..\....<.w.<.w
    0x0018fb8c: 77077af9 0000277b 02b901ec 02b90000 .z.w{'..........
    0x0018fb9c: 02b90150 00f092c8 000007f8 02b90150 P...........P...
    0x0018fbac: 00070031 00000001 00f40e58 00000097 1.......X.......
    0x0018fbbc: 00f09000 02b90150 00f092c8 02b95ac8 ....P........Z..
    0x0018fbcc: 00000020 0000007f 00000000 0000000d ...............
    0x0018fbdc: 00f08fb8 00f090d8 00f55ba8 00f09480 .........[......
    0x0018fbec: 00000000 a40000a4 02b900c4 0018fd00 ................
    0x0018fbfc: 770971f5 001b54dd 00000000 0000007f .q.w.T..........
    0x0018fc0c: 7704e0f2 a40000a4 02b900c4 00000001 ...w............
    0x0018fc1c: 00000000 00000002 00000008 02b95ac8 .............Z..
    0x0018fc2c: 02b95ac8 02b95ac3 00000000 002d0000 .Z...Z........-.
    0x0018fc3c: 02b90000 0118fc78 0018fb8c 00000002 ....x...........
    0x0018fc4c: 0018fd3c 770971f5 001b4e35 fffffffe <....q.w5N......
    0x0018fc5c: 77053cd3 77053cfe 7703fe56 76b7c4d9 .<.w.<.wV..w...v
    0x0018fc6c: ffffffff fffffffe ffffffff 02b95ad0 .............Z..
    0x0018fc7c: 00000000 00000000 00000002 0018fcac ................
    0x0018fc8c: 7630189e ffffffff fffffffe ffffffff ..0v............
    0x0018fc9c: 02b95ad0 00000000 00000000 00000002 .Z..............
    0x0018fcac: 0018fcd8 761d36e9 ffffffff fffffffe .....6.v........
    0x0018fcbc: ffffffff 02b95ad0 00000000 00000000 .....Z..........
    0x0018fccc: 00000002 761d36f4 02b95ae0 0018fcf4 .....6.v.Z......
    0x0018fcdc: 761d3693 761f70f0 02b95ac8 761f70f0 .6.v.p.v.Z...p.v
    0x0018fcec: 00000001 02b95ac8 0018fd08 761d3643 .....Z......C6.v
    0x0018fcfc: 761f70f0 00000001 00000001 02b907d0 .p.v............
    0x0018fd0c: 0018fd4c 761d3be3 761d3beb ed59d14b L....;.v.;.vK.Y.
    0x0018fd1c: fffffffe 00b43064 00000001 00000001 ....d0..........
    0x0018fd2c: 00000001 00000000 0018fd18 00322dcc .............-2.
    0x0018fd3c: 0018ff78 761f3912 9b5c100f fffffffe x....9.v..\.....
    0x0018fd4c: 761d3beb 008ad7a2 00000202 02b95ac8 .;.v.........Z..
    0x0018fd5c: 02020202 536e6957 206b636f 00302e32 ....WinSock 2.0.
    0x0018fd6c: 7704e38c 77077b51 00d057d8 00f001ac ...wQ{.w.W......
    0x0018fd7c: 00f00000 0011002f 00000001 01c89d98 ..../...........
    0x0018fd8c: 00320000 00000003 0018fca8 000c0030 ..2.........0...
    0x0018fd9c: 00000001 770971f5 001b4b35 fffffffe .....q.w5K......
    0x0018fdac: 77062728 00f092c8 00328bd0 00000020 ('.w......2. ...
    0x0018fdbc: 00000200 00000000 00f40e58 00f08fb8 ........X.......
    0x0018fdcc: 00f090d8 00f55bd0 00f09480 00000000 .....[..........
    0x0018fddc: 0018fd70 00bc82c8 0018ff78 770971f5 p.......x....q.w
    0x0018fdec: 001b54dd fffffffe 7704e38c 7704e0f2 .T.........w...w
    0x0018fdfc: 00d057d8 0000002b 03dd7ddc 00321cf0 .W..+....}....2.
    0x0018fe0c: 0000000f 0018fe00 0000001a 0000001f ................
    0x0018fe1c: 00322a30 00bc82c8 0000002b 6f6e6f4d 0*2.....+...Mono
    0x0018fe2c: 6e6f6d2f 6c642e6f 0000006c 0000000d /mono.dll.......
    0x0018fe3c: 0000000f 0018fe84 03dd8420 03dd8458 ........ ...X...
    0x0018fe4c: 03dd8458 0000002b 03dd7f80 6c5f7475 X...+.......ut_l
    0x0018fe5c: 742e676f 00007478 0000004c 0000004f og.txt..L...O...
    0x0018fe6c: 0000002b 03dd7e64 00993e65 00328e6c +...d~..e>..l.2.
    0x0018fe7c: 00328e6c 0000003d 0000003f 0000002b l.2.=...?...+...
    0x0018fe8c: 6f6e6f00 6374652f 0018fe00 00993f21 .ono/etc....!?..
    0x0018fe9c: 00000000 0000000f 0000002b 03dd7f1c ........+.......
    0x0018feac: 00000000 0018fed0 00994108 0000004c .........A..L...
    0x0018febc: 0000004f 0000002b 03dd8100 00646500 O...+........ed.
    0x0018fecc: 00000000 00c7b858 00000000 0000000f ....X...........
    0x0018fedc: 0000002b 03dd8500 00656c69 00000000 +.......ile.....
    0x0018feec: 00000022 00000000 0000000f 0018ff88 "...............
    0x0018fefc: 00989e5f 00400000 00000000 00f047a7 _.....@......G..
    0x0018ff0c: 00000001 ed590d72 00000000 00000000 ....r.Y.........
    0x0018ff1c: fffde000 00000044 00f41c70 00f45c08 ....D...p....\..
    0x0018ff2c: 00f44898 00000000 00000000 00000000 .H..............
    0x0018ff3c: 00000000 00000000 00000000 00000000 ................
    0x0018ff4c: 00000401 00000001 00000000 00000000 ................
    0x0018ff5c: 00010001 00000000 c0000005 00000000 ................
    0x0018ff6c: 00000000 0018ff10 0018eec4 0018ffc4 ................
    0x0018ff7c: 0098b770 ed84a4a2 00000001 0018ff94 p...............
    0x0018ff8c: 7630338a fffde000 0018ffd4 77059f72 .30v........r..w
    0x0018ff9c: fffde000 77077971 00000000 00000000 ....qy.w........
    0x0018ffac: fffde000 c0000005 763276f7 763276f7 .........v2v.v2v
    0x0018ffbc: 0018ffa0 0018eec8 ffffffff 770971f5 .............q.w
    0x0018ffcc: 001b43f5 00000000 0018ffec 77059f45 .C..........E..w
    0x0018ffdc: 00989eca fffde000 00000000 00000000 ................
    0x0018ffec: 00000000 00000000 00989eca fffde000 ................
    0x0018fffc: 00000000 ....

    Module 1
    E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction.exe
    Image Base: 0x00400000 Image Size: 0x00983000
    File Size: 9293824 File Time: 2012-09-24_073856
    Version:
    Company:
    Product:
    FileDesc:
    FileVer: 3.5.6.44817
    ProdVer: 3.5.6.44817

    Module 2
    C:\Users\yuw142\AppData\Local\Youdao\Dict\Application\5.4.43.3217\WordStrokeHelper32.dll
    Image Base: 0x10000000 Image Size: 0x0000f000
    File Size: 65168 File Time: 2013-02-21_230338
    Version:
    Company:
    Product:
    FileDesc:
    FileVer: 0.0.0.0
    ProdVer: 0.0.0.0

    Module 3
    E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction_Data\Mono\mono.dll
    Image Base: 0x10000000 Image Size: 0x0021f000
    File Size: 2086912 File Time: 2012-09-24_073852
    Version:
    Company:
    Product:
    FileDesc:
    FileVer: 0.0.0.0
    ProdVer: 0.0.0.0

    Module 4
    C:\Windows\system32\atioglxx.dll
    Image Base: 0x60da0000 Image Size: 0x014d5000
    File Size: 21400064 File Time: 2013-08-30_191358
    Version:
    Company: Advanced Micro Devices, Inc.
    Product: AMD OpenGL driver
    FileDesc: AMD OpenGL driver
    FileVer: 6.14.10.12422
    ProdVer: 6.14.10.12422

    Module 5
    C:\Windows\system32\DDRAW.dll
    Image Base: 0x65470000 Image Size: 0x000e7000
    File Size: 531968 File Time: 2009-07-13_211512
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft DirectDraw
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 6
    C:\Windows\system32\DCIMAN32.dll
    Image Base: 0x6a750000 Image Size: 0x00006000
    File Size: 10240 File Time: 2013-06-06_005058
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: DCI Manager
    FileVer: 6.1.7601.18177
    ProdVer: 6.1.7601.18177

    Module 7
    C:\Windows\system32\PROPSYS.dll
    Image Base: 0x6a990000 Image Size: 0x000f5000
    File Size: 988160 File Time: 2010-11-20_042058
    Version:
    Company: Microsoft Corporation
    Product: Windows® Search
    FileDesc: Microsoft Property System
    FileVer: 7.0.7601.17514
    ProdVer: 7.0.7601.17514

    Module 8
    C:\Windows\system32\atigktxx.dll
    Image Base: 0x6abf0000 Image Size: 0x0001c000
    File Size: 96768 File Time: 2013-08-30_183242
    Version:
    Company: Advanced Micro Devices, Inc.
    Product: Advanced Micro Devices, Inc PowerXpress Vista OpenGL (thunk) Driver
    FileDesc: atigktxx.dll
    FileVer: 8.14.1.6340
    ProdVer: 8.14.1.6340

    Module 9
    C:\Windows\system32\atiadlxy.dll
    Image Base: 0x6ac30000 Image Size: 0x000a0000
    File Size: 594944 File Time: 2013-08-30_183312
    Version:
    Company: Advanced Micro Devices, Inc.
    Product: ADL Component
    FileDesc: ADL
    FileVer: 6.14.10.1128
    ProdVer: 6.14.10.1128

    Module 10
    C:\Windows\system32\GLU32.dll
    Image Base: 0x6acd0000 Image Size: 0x00022000
    File Size: 130048 File Time: 2009-07-13_211524
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: OpenGL Utility Library DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 11
    C:\Windows\system32\OPENGL32.dll
    Image Base: 0x6ad00000 Image Size: 0x000c8000
    File Size: 791552 File Time: 2009-07-13_211614
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: OpenGL Client DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 12
    C:\Windows\system32\atiglpxx.dll
    Image Base: 0x6ae40000 Image Size: 0x00015000
    File Size: 69632 File Time: 2013-08-30_183254
    Version:
    Company: Advanced Micro Devices, Inc.
    Product: Advanced Micro Devices, Inc PowerXpress Vista OpenGL Driver
    FileDesc: atiglpxx.dll
    FileVer: 8.14.1.6340
    ProdVer: 8.14.1.6340

    Module 13
    C:\Windows\system32\aticfx32.dll
    Image Base: 0x6f900000 Image Size: 0x000fc000
    File Size: 1027544 File Time: 2013-08-30_201354
    Version:
    Company: Advanced Micro Devices, Inc.
    Product: AMD Inc. Radeon DirectX 11 Driver
    FileDesc: aticfx32.dll
    FileVer: 8.17.10.1230
    ProdVer: 8.17.10.1230

    Module 14
    C:\Windows\system32\dhcpcsvc6.DLL
    Image Base: 0x710f0000 Image Size: 0x0000d000
    File Size: 44032 File Time: 2012-10-09_134032
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: DHCPv6 Client
    FileVer: 6.1.7601.17970
    ProdVer: 6.1.7601.17970

    Module 15
    C:\Program Files (x86)\Bonjour\mdnsNSP.dll
    Image Base: 0x71120000 Image Size: 0x00021000
    File Size: 121704 File Time: 2011-08-30_230502
    Version:
    Company: Apple Inc.
    Product: Bonjour
    FileDesc: Bonjour Namespace Provider
    FileVer: 3.0.0.10
    ProdVer: 3.0.0.10

    Module 16
    C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
    Image Base: 0x71150000 Image Size: 0x00027000
    File Size: 145280 File Time: 2010-09-21_140314
    Version:
    Company: Microsoft Corp.
    Product: Microsoft® CoReXT
    FileDesc: Microsoft® Windows Live ID Namespace Provider
    FileVer: 7.250.4225.0
    ProdVer: 7.250.4225.0

    Module 17
    C:\Windows\system32\pnrpnsp.dll
    Image Base: 0x71430000 Image Size: 0x00012000
    File Size: 65024 File Time: 2009-07-13_211614
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: PNRP Name Space Provider
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 18
    C:\Windows\system32\wshbth.dll
    Image Base: 0x72110000 Image Size: 0x0000d000
    File Size: 36352 File Time: 2010-11-20_042140
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Sockets Helper DLL
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 19
    C:\Windows\system32\dhcpcsvc.DLL
    Image Base: 0x721c0000 Image Size: 0x00012000
    File Size: 61952 File Time: 2009-07-13_211512
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: DHCP Client Service
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 20
    C:\Windows\System32\winrnr.dll
    Image Base: 0x72200000 Image Size: 0x00008000
    File Size: 20992 File Time: 2009-07-13_211620
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: LDAP RnR Provider DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 21
    C:\Windows\system32\napinsp.dll
    Image Base: 0x72240000 Image Size: 0x00010000
    File Size: 52224 File Time: 2009-07-13_211604
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: E-mail Naming Shim Provider
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 22
    C:\Windows\system32\NLAapi.dll
    Image Base: 0x72310000 Image Size: 0x00010000
    File Size: 52224 File Time: 2012-01-13_031204
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Network Location Awareness 2
    FileVer: 6.1.7601.17761
    ProdVer: 6.1.7601.17761

    Module 23
    C:\Windows\system32\dwmapi.dll
    Image Base: 0x72340000 Image Size: 0x00013000
    File Size: 67072 File Time: 2009-07-13_211514
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft Desktop Window Manager API
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 24
    C:\Windows\System32\wshtcpip.dll
    Image Base: 0x72e40000 Image Size: 0x00005000
    File Size: 9216 File Time: 2009-07-13_211622
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Winsock2 Helper DLL (TL/IPv4)
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 25
    C:\Windows\system32\MSWSOCK.dll
    Image Base: 0x72e50000 Image Size: 0x0003c000
    File Size: 231424 File Time: 2013-09-07_220400
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft Windows Sockets 2.0 Service Provider
    FileVer: 6.1.7601.18254
    ProdVer: 6.1.7601.18254

    Module 26
    C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    Image Base: 0x73250000 Image Size: 0x0019e000
    File Size: 1680896 File Time: 2010-11-20_035510
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: User Experience Controls Library
    FileVer: 6.10.7601.17514
    ProdVer: 6.1.7601.17514

    Module 27
    C:\Windows\system32\DNSAPI.dll
    Image Base: 0x73470000 Image Size: 0x00044000
    File Size: 270336 File Time: 2011-03-03_013802
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: DNS Client API DLL
    FileVer: 6.1.7601.17570
    ProdVer: 6.1.7601.17570

    Module 28
    C:\Windows\system32\uxtheme.dll
    Image Base: 0x73530000 Image Size: 0x00080000
    File Size: 245760 File Time: 2009-07-13_211126
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft UxTheme Library
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 29
    C:\Windows\system32\HID.DLL
    Image Base: 0x73720000 Image Size: 0x00009000
    File Size: 22016 File Time: 2009-07-13_211526
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Hid User Library
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 30
    C:\Windows\system32\xinput9_1_0.dll
    Image Base: 0x73760000 Image Size: 0x00009000
    File Size: 25600 File Time: 2009-07-13_211622
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: XNA Common Controller
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 31
    C:\Windows\system32\MSACM32.dll
    Image Base: 0x73770000 Image Size: 0x00014000
    File Size: 72192 File Time: 2009-07-13_211544
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft ACM Audio Filter
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 32
    C:\Windows\system32\WINMM.dll
    Image Base: 0x73a30000 Image Size: 0x00032000
    File Size: 194048 File Time: 2010-11-20_042138
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: MCI API DLL
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 33
    C:\Windows\system32\WINNSI.DLL
    Image Base: 0x73d20000 Image Size: 0x00007000
    File Size: 16896 File Time: 2009-07-13_211620
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Network Store Information RPC interface
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 34
    C:\Windows\system32\IPHLPAPI.DLL
    Image Base: 0x73d30000 Image Size: 0x0001c000
    File Size: 103936 File Time: 2010-11-20_041924
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: IP Helper API
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 35
    C:\Windows\system32\profapi.dll
    Image Base: 0x74140000 Image Size: 0x0000b000
    File Size: 31744 File Time: 2009-07-13_211614
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: User Profile Basic API
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 36
    C:\Windows\system32\USERENV.dll
    Image Base: 0x74150000 Image Size: 0x00017000
    File Size: 81920 File Time: 2010-11-20_042134
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Userenv
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 37
    C:\Windows\system32\WTSAPI32.dll
    Image Base: 0x74170000 Image Size: 0x0000d000
    File Size: 40448 File Time: 2010-11-20_042140
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Remote Desktop Session Host Server SDK APIs
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 38
    C:\Windows\system32\WSOCK32.dll
    Image Base: 0x743d0000 Image Size: 0x00007000
    File Size: 15360 File Time: 2009-07-13_211622
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Socket 32-Bit DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 39
    C:\Windows\system32\VERSION.dll
    Image Base: 0x74400000 Image Size: 0x00009000
    File Size: 21504 File Time: 2009-07-13_211618
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Version Checking and File Installation Libraries
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 40
    C:\Windows\system32\dbghelp.dll
    Image Base: 0x74410000 Image Size: 0x000eb000
    File Size: 854016 File Time: 2010-11-20_041828
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Image Helper
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 41
    C:\Windows\syswow64\CRYPTBASE.dll
    Image Base: 0x74a40000 Image Size: 0x0000c000
    File Size: 36864 File Time: 2009-07-13_211508
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Base cryptographic API DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 42
    C:\Windows\syswow64\SspiCli.dll
    Image Base: 0x74a50000 Image Size: 0x00060000
    File Size: 96768 File Time: 2013-09-24_215818
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Security Support Provider Interface
    FileVer: 6.1.7601.18270
    ProdVer: 6.1.7601.18270

    Module 43
    C:\Windows\syswow64\NSI.dll
    Image Base: 0x74ab0000 Image Size: 0x00006000
    File Size: 8704 File Time: 2009-07-13_211612
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: NSI User-mode interface DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 44
    C:\Windows\syswow64\PSAPI.DLL
    Image Base: 0x74ac0000 Image Size: 0x00005000
    File Size: 6144 File Time: 2009-07-13_211614
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Process Status Helper
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 45
    C:\Windows\syswow64\GDI32.dll
    Image Base: 0x74ad0000 Image Size: 0x00090000
    File Size: 311808 File Time: 2013-10-02_220046
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: GDI Client DLL
    FileVer: 6.1.7601.18275
    ProdVer: 6.1.7601.18275

    Module 46
    C:\Windows\syswow64\IMM32.dll
    Image Base: 0x74b60000 Image Size: 0x00060000
    File Size: 119808 File Time: 2010-11-20_040852
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Multi-User Windows IMM32 API Client DLL
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 47
    C:\Windows\SysWOW64\sechost.dll
    Image Base: 0x74bc0000 Image Size: 0x00019000
    File Size: 92160 File Time: 2009-07-13_211614
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Host for SCM/SDDL/LSA Lookup APIs
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 48
    C:\Windows\syswow64\MSCTF.dll
    Image Base: 0x74be0000 Image Size: 0x000cc000
    File Size: 828928 File Time: 2009-07-13_211544
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: MSCTF Server DLL
    FileVer: 6.1.7600.16385
    ProdVer: 6.1.7600.16385

    Module 49
    C:\Windows\syswow64\msvcrt.dll
    Image Base: 0x74d80000 Image Size: 0x000ac000
    File Size: 690688 File Time: 2011-12-16_035300
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows NT CRT DLL
    FileVer: 7.0.7601.17744
    ProdVer: 6.1.8638.17744

    Module 50
    C:\Windows\syswow64\SHELL32.dll
    Image Base: 0x74e30000 Image Size: 0x00c4a000
    File Size: 12872704 File Time: 2013-07-25_215600
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Shell Common Dll
    FileVer: 6.1.7601.18222
    ProdVer: 6.1.7601.18222

    Module 51
    C:\Windows\syswow64\LPK.dll
    Image Base: 0x75d40000 Image Size: 0x0000a000
    File Size: 25600 File Time: 2013-06-06_005702
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Language Pack
    FileVer: 6.1.7601.18177
    ProdVer: 6.1.7601.18177

    Module 52
    C:\Windows\syswow64\CRYPT32.dll
    Image Base: 0x75e30000 Image Size: 0x00120000
    File Size: 1168384 File Time: 2013-10-05_155726
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Crypto API32
    FileVer: 6.1.7601.18277
    ProdVer: 6.1.7601.18277

    Module 53
    C:\Windows\syswow64\ADVAPI32.dll
    Image Base: 0x75f60000 Image Size: 0x000a0000
    File Size: 640512 File Time: 2013-08-28_214818
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Advanced Windows 32 Base API
    FileVer: 6.1.7601.18247
    ProdVer: 6.1.7601.18247

    Module 54
    C:\Windows\syswow64\CFGMGR32.dll
    Image Base: 0x76130000 Image Size: 0x00027000
    File Size: 145920 File Time: 2011-05-24_063940
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Configuration Manager DLL
    FileVer: 6.1.7601.17621
    ProdVer: 6.1.7601.17621

    Module 55
    C:\Windows\syswow64\WS2_32.dll
    Image Base: 0x761d0000 Image Size: 0x00035000
    File Size: 206848 File Time: 2010-11-20_042140
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Socket 2.0 32-Bit DLL
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 56
    C:\Windows\syswow64\WINTRUST.dll
    Image Base: 0x76210000 Image Size: 0x0002e000
    File Size: 175104 File Time: 2013-07-09_005212
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft Trust Verification APIs
    FileVer: 6.1.7601.18205
    ProdVer: 6.1.7601.18205

    Module 57
    C:\Windows\syswow64\MSASN1.dll
    Image Base: 0x76240000 Image Size: 0x0000c000
    File Size: 34304 File Time: 2010-11-20_041946
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: ASN.1 Runtime APIs
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 58
    C:\Windows\syswow64\OLEAUT32.dll
    Image Base: 0x76260000 Image Size: 0x0008f000
    File Size: 571904 File Time: 2011-08-27_002628
    Version:
    Company: Microsoft Corporation
    Product:
    FileDesc:
    FileVer: 6.1.7601.17676
    ProdVer: 6.1.7601.17676

    Module 59
    C:\Windows\syswow64\kernel32.dll
    Image Base: 0x762f0000 Image Size: 0x00110000
    File Size: 1114112 File Time: 2014-03-04_051618
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows NT BASE API Client DLL
    FileVer: 6.1.7601.18409
    ProdVer: 6.1.7601.18409

    Module 60
    C:\Windows\syswow64\USER32.dll
    Image Base: 0x76400000 Image Size: 0x00100000
    File Size: 833024 File Time: 2010-11-20_040858
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Multi-User Windows USER API Client DLL
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 61
    C:\Windows\syswow64\ole32.dll
    Image Base: 0x76500000 Image Size: 0x0015c000
    File Size: 1414144 File Time: 2010-11-20_042050
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Microsoft OLE for Windows
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 62
    C:\Windows\syswow64\RPCRT4.dll
    Image Base: 0x76660000 Image Size: 0x000f0000
    File Size: 663552 File Time: 2013-07-09_005234
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Remote Procedure Call Runtime
    FileVer: 6.1.7601.18205
    ProdVer: 6.1.7601.18205

    Module 63
    C:\Windows\syswow64\DEVOBJ.dll
    Image Base: 0x76750000 Image Size: 0x00012000
    File Size: 64512 File Time: 2011-05-24_064006
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Device Information Set DLL
    FileVer: 6.1.7601.17621
    ProdVer: 6.1.7601.17621

    Module 64
    C:\Windows\syswow64\SETUPAPI.dll
    Image Base: 0x76930000 Image Size: 0x0019d000
    File Size: 1667584 File Time: 2010-11-20_042116
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows Setup API
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 65
    C:\Windows\syswow64\USP10.dll
    Image Base: 0x76ad0000 Image Size: 0x0009d000
    File Size: 626688 File Time: 2012-11-22_004504
    Version:
    Company: Microsoft Corporation
    Product: Microsoft(R) Uniscribe Unicode script processor
    FileDesc: Uniscribe Unicode script processor
    FileVer: 1.626.7601.18009
    ProdVer: 1.626.7601.18009

    Module 66
    C:\Windows\syswow64\KERNELBASE.dll
    Image Base: 0x76b70000 Image Size: 0x00047000
    File Size: 274944 File Time: 2013-08-01_215044
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Windows NT BASE API Client DLL
    FileVer: 6.1.7601.18229
    ProdVer: 6.1.7601.18229

    Module 67
    C:\Windows\syswow64\SHLWAPI.dll
    Image Base: 0x76bc0000 Image Size: 0x00057000
    File Size: 350208 File Time: 2010-11-20_042120
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: Shell Light-weight Utility Library
    FileVer: 6.1.7601.17514
    ProdVer: 6.1.7601.17514

    Module 68
    C:\Windows\SysWOW64\ntdll.dll
    Image Base: 0x77020000 Image Size: 0x00180000
    File Size: 1292192 File Time: 2013-08-28_215032
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Windows® Operating System
    FileDesc: NT Layer DLL
    FileVer: 6.1.7601.18247
    ProdVer: 6.1.7601.18247


    == [end of error.log] ==
    Crash_2014-04-24_230634
     
  29. susupanda

    susupanda

    Joined:
    Apr 25, 2014
    Posts:
    2
    GfxDevice: creating device client; threaded=1
    d3d: no support for this device type (accelerated/ref)
    D3D9 initialization failed, trying OpenGL
    GfxDevice: creating device client; threaded=1
    OpenGL:
    Version: OpenGL 4.2 [4.2.12422 Compatibility Profile Context 13.152.0.0]
    Renderer: AMD Radeon HD 7000 series
    Vendor: ATI Technologies Inc.
    VRAM: 1003 MB (via DXGI)
    Extensions: GL_AMDX_debug_output GL_AMDX_vertex_shader_tessellator GL_AMD_conservative_depth GL_AMD_debug_output GL_AMD_depth_clamp_separate GL_AMD_draw_buffers_blend GL_AMD_multi_draw_indirect GL_AMD_name_gen_delete GL_AMD_performance_monitor GL_AMD_pinned_memory GL_AMD_query_buffer_object GL_AMD_sample_positions GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trace GL_AMD_texture_cube_map_array GL_AMD_texture_texture4 GL_AMD_transform_feedback3_lines_triangles GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_tessellator GL_AMD_vertex_shader_viewport_index GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_blend_func_extended GL_ARB_clear_buffer_object GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_geometry_shader4 GL_ARB_get_program_binary GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_draw_indirect GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counters GL_ARB_shader_bit_encoding GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shading_language_420pack GL_ARB_shading_language_packing GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_cube_map_array GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_snorm GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_envmap_bumpmap GL_ATI_fragment_shader GL_ATI_separate_stencil GL_ATI_texture_compression_3dc GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_ATI_texture_mirror_once GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_copy_buffer GL_EXT_copy_texture GL_EXT_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shader_image_load_store GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texgen_reflection GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_bptc GL_EXT_texture_compression_latc GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_storage GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_IBM_texture_mirrored_repeat GL_KHR_debug GL_KTX_buffer_region GL_NV_blend_square GL_NV_conditional_render GL_NV_copy_depth_to_color GL_NV_copy_image GL_NV_explicit_multisample GL_NV_float_buffer GL_NV_half_float GL_NV_primitive_restart GL_NV_texgen_reflection GL_NV_texture_barrier GL_SGIS_generate_mipmap GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SUN_multi_draw_arrays GL_WIN_swap_hint WGL_EXT_swap_control
    WGL extensions: WGL_ARB_extensions_string WGL_ARB_pixel_format WGL_ATI_pixel_format_float WGL_ARB_pixel_format_float WGL_ARB_multisample WGL_EXT_swap_control WGL_EXT_swap_control_tear WGL_ARB_pbuffer WGL_ARB_render_texture WGL_ARB_make_current_read WGL_EXT_extensions_string WGL_ARB_buffer_region WGL_EXT_framebuffer_sRGB WGL_ATI_render_texture_rectangle WGL_EXT_pixel_format_packed_float WGL_I3D_genlock WGL_NV_swap_group WGL_ARB_create_context WGL_AMD_gpu_association WGL_AMDX_gpu_association WGL_ARB_create_context_profile WGL_NV_DX_interop WGL_NV_DX_interop2 WGL_NV_float_buffer
    GL: disabling render-to-cubemap due to Radeon driver bugs
    GL: disabling mipmapped render textures due to Radeon driver bugs
    GLContext: failed to activate 10000: The requested resource is in use.


    desktop: 1920x1080 60Hz; virtual: 3520x1080 at -1600,0
    <RI> Initializing input.

    <RI> Input initialized.

    Crash!!!
    SymInit: Symbol-SearchPath: '.;E:\Academy\2012FALL\AE597F;E:\Academy\2012FALL\AE597F;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 530, UserName: 'yuw142'
    OS-Version: 6.1.7601 (Service Pack 1) 0x100-0x1
    E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction.exe:Wang_Grand Master_Interaction.exe (00400000), size: 9973760 (result: 0), SymType: '-exported-', PDB: 'E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction.exe', fileVersion: 3.5.6.44817
    C:\Windows\SysWOW64\ntdll.dll:ntdll.dll (77020000), size: 1572864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SysWOW64\ntdll.dll', fileVersion: 6.1.7601.18247
    C:\Windows\syswow64\kernel32.dll:kernel32.dll (762F0000), size: 1114112 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\kernel32.dll', fileVersion: 6.1.7601.18409
    C:\Windows\syswow64\KERNELBASE.dll:KERNELBASE.dll (76B70000), size: 290816 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\KERNELBASE.dll', fileVersion: 6.1.7601.18229
    C:\Windows\syswow64\USER32.dll:USER32.dll (76400000), size: 1048576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\USER32.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\GDI32.dll:GDI32.dll (74AD0000), size: 589824 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\GDI32.dll', fileVersion: 6.1.7601.18275
    C:\Windows\syswow64\LPK.dll:LPK.dll (75D40000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\LPK.dll', fileVersion: 6.1.7601.18177
    C:\Windows\syswow64\USP10.dll:USP10.dll (76AD0000), size: 643072 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\USP10.dll', fileVersion: 1.626.7601.18009
    C:\Windows\syswow64\msvcrt.dll:msvcrt.dll (74D80000), size: 704512 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\msvcrt.dll', fileVersion: 7.0.7601.17744
    C:\Windows\syswow64\ADVAPI32.dll:ADVAPI32.dll (75F60000), size: 655360 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\ADVAPI32.dll', fileVersion: 6.1.7601.18247
    C:\Windows\SysWOW64\sechost.dll:sechost.dll (74BC0000), size: 102400 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SysWOW64\sechost.dll', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\RPCRT4.dll:RPCRT4.dll (76660000), size: 983040 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\RPCRT4.dll', fileVersion: 6.1.7601.18205
    C:\Windows\syswow64\SspiCli.dll:SspiCli.dll (74A50000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SspiCli.dll', fileVersion: 6.1.7601.18270
    C:\Windows\syswow64\CRYPTBASE.dll:CRYPTBASE.dll (74A40000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CRYPTBASE.dll', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\SHELL32.dll:SHELL32.dll (74E30000), size: 12886016 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SHELL32.dll', fileVersion: 6.1.7601.18222
    C:\Windows\syswow64\SHLWAPI.dll:SHLWAPI.dll (76BC0000), size: 356352 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SHLWAPI.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\ole32.dll:eek:le32.dll (76500000), size: 1425408 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\ole32.dll', fileVersion: 6.1.7601.17514
    C:\Windows\system32\VERSION.dll:VERSION.dll (74400000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\VERSION.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\OPENGL32.dll:OPENGL32.dll (6AD00000), size: 819200 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\OPENGL32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\GLU32.dll:GLU32.dll (6ACD0000), size: 139264 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\GLU32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\DDRAW.dll:DDRAW.dll (65470000), size: 946176 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DDRAW.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\DCIMAN32.dll:DCIMAN32.dll (6A750000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DCIMAN32.dll', fileVersion: 6.1.7601.18177
    C:\Windows\syswow64\SETUPAPI.dll:SETUPAPI.dll (76930000), size: 1691648 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SETUPAPI.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\CFGMGR32.dll:CFGMGR32.dll (76130000), size: 159744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CFGMGR32.dll', fileVersion: 6.1.7601.17621
    C:\Windows\syswow64\OLEAUT32.dll:OLEAUT32.dll (76260000), size: 585728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\OLEAUT32.dll', fileVersion: 6.1.7601.17676
    C:\Windows\syswow64\DEVOBJ.dll:DEVOBJ.dll (76750000), size: 73728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\DEVOBJ.dll', fileVersion: 6.1.7601.17621
    C:\Windows\system32\dwmapi.dll:dwmapi.dll (72340000), size: 77824 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dwmapi.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\WINMM.dll:WINMM.dll (73A30000), size: 204800 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINMM.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\WS2_32.dll:WS2_32.dll (761D0000), size: 217088 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\WS2_32.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\NSI.dll:NSI.dll (74AB0000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\NSI.dll', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\IMM32.dll:IMM32.dll (74B60000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\IMM32.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\MSCTF.dll:MSCTF.dll (74BE0000), size: 835584 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\MSCTF.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\DNSAPI.dll:DNSAPI.dll (73470000), size: 278528 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DNSAPI.dll', fileVersion: 6.1.7601.17570
    C:\Windows\system32\IPHLPAPI.DLL:IPHLPAPI.DLL (73D30000), size: 114688 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\IPHLPAPI.DLL', fileVersion: 6.1.7601.17514
    C:\Windows\system32\WINNSI.DLL:WINNSI.DLL (73D20000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINNSI.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\system32\HID.DLL:HID.DLL (73720000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\HID.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\system32\WSOCK32.dll:WSOCK32.dll (743D0000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WSOCK32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\MSACM32.dll:MSACM32.dll (73770000), size: 81920 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSACM32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\uxtheme.dll:uxtheme.dll (73530000), size: 524288 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\uxtheme.dll', fileVersion: 6.1.7600.16385
    E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction_Data\Mono\mono.dll:mono.dll (10000000), size: 2224128 (result: 0), SymType: '-exported-', PDB: 'E:\Academy\2012FALL\AE597F\Wang_Grand Master_Interaction_Data\Mono\mono.dll'
    C:\Windows\syswow64\PSAPI.DLL:pSAPI.DLL (74AC0000), size: 20480 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\PSAPI.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\system32\MSWSOCK.dll:MSWSOCK.dll (72E50000), size: 245760 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSWSOCK.dll', fileVersion: 6.1.7601.18254
    C:\Windows\system32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (710F0000), size: 53248 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dhcpcsvc6.DLL', fileVersion: 6.1.7601.17970
    C:\Windows\system32\dhcpcsvc.DLL:dhcpcsvc.DLL (721C0000), size: 73728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dhcpcsvc.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\System32\wshtcpip.dll:wshtcpip.dll (72E40000), size: 20480 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\wshtcpip.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\NLAapi.dll:NLAapi.dll (72310000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\NLAapi.dll', fileVersion: 6.1.7601.17761
    C:\Windows\system32\napinsp.dll:napinsp.dll (72240000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\napinsp.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\pnrpnsp.dll:pnrpnsp.dll (71430000), size: 73728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\pnrpnsp.dll', fileVersion: 6.1.7600.16385
    C:\Windows\System32\winrnr.dll:winrnr.dll (72200000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\winrnr.dll', fileVersion: 6.1.7600.16385
    C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL:WLIDNSP.DLL (71150000), size: 159744 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL', fileVersion: 7.250.4225.0
    C:\Windows\system32\wshbth.dll:wshbth.dll (72110000), size: 53248 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\wshbth.dll', fileVersion: 6.1.7601.17514
    C:\Program Files (x86)\Bonjour\mdnsNSP.dll:mdnsNSP.dll (71120000), size: 135168 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\Bonjour\mdnsNSP.dll', fileVersion: 3.0.0.10
    C:\Windows\system32\atiglpxx.dll:atiglpxx.dll (6AE40000), size: 86016 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\atiglpxx.dll', fileVersion: 8.14.1.6340
    C:\Windows\system32\atioglxx.dll:atioglxx.dll (60DA0000), size: 21843968 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\atioglxx.dll', fileVersion: 6.14.10.12422
    C:\Windows\system32\atiadlxy.dll:atiadlxy.dll (6AC30000), size: 655360 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\atiadlxy.dll', fileVersion: 6.14.10.1128
    C:\Windows\system32\PROPSYS.dll:pROPSYS.dll (6A990000), size: 1003520 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\PROPSYS.dll', fileVersion: 7.0.7601.17514
    C:\Windows\system32\USERENV.dll:USERENV.dll (74150000), size: 94208 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\USERENV.dll', fileVersion: 6.1.7601.17514
    C:\Windows\system32\profapi.dll:profapi.dll (74140000), size: 45056 (result: 0), SymType: '-nosymbols-', PDB: 'C:\Windows\system32\profapi.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\WTSAPI32.dll:WTSAPI32.dll (74170000), size: 53248 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WTSAPI32.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\WINTRUST.dll:WINTRUST.dll (76210000), size: 188416 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\WINTRUST.dll', fileVersion: 6.1.7601.18205
    C:\Windows\syswow64\CRYPT32.dll:CRYPT32.dll (75E30000), size: 1179648 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CRYPT32.dll', fileVersion: 6.1.7601.18277
    C:\Windows\syswow64\MSASN1.dll:MSASN1.dll (76240000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\MSASN1.dll', fileVersion: 6.1.7601.17514
    C:\Windows\system32\aticfx32.dll:aticfx32.dll (6F900000), size: 1032192 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\aticfx32.dll', fileVersion: 8.17.10.1230
    C:\Windows\system32\atigktxx.dll:atigktxx.dll (6ABF0000), size: 114688 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\atigktxx.dll', fileVersion: 8.14.1.6340
    C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll:comctl32.dll (73250000), size: 1695744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll', fileVersion: 6.10.7601.17514
    C:\Windows\system32\xinput9_1_0.dll:xinput9_1_0.dll (73760000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\xinput9_1_0.dll', fileVersion: 6.1.7600.16385
    C:\Users\yuw142\AppData\Local\Youdao\Dict\Application\5.4.43.3217\WordStrokeHelper32.dll:WordStrokeHelper32.dll (02D70000), size: 61440 (result: 0), SymType: '-exported-', PDB: 'C:\Users\yuw142\AppData\Local\Youdao\Dict\Application\5.4.43.3217\WordStrokeHelper32.dll'
    C:\Windows\system32\dbghelp.dll:dbghelp.dll (74410000), size: 962560 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dbghelp.dll', fileVersion: 6.1.7601.17514

    ========== OUTPUTING STACK TRACE ==================

    (0x62195016) (atioglxx): (filename not available): DrvPresentBuffers
    (0x006A0BC0) (Wang_Grand Master_Interaction): (filename not available): (function-name not available)
    (0x006A0CA6) (Wang_Grand Master_Interaction): (filename not available): (function-name not available)
    (0x006A0D40) (Wang_Grand Master_Interaction): (filename not available): (function-name not available)
    (0x0056B653) (Wang_Grand Master_Interaction): (filename not available): (function-name not available)
    (0x006150C2) (Wang_Grand Master_Interaction): (filename not available): (function-name not available)
    (0x00989E5F) (Wang_Grand Master_Interaction): (filename not available): (function-name not available)
    (0x7630338A) (kernel32): (filename not available): BaseThreadInitThunk
    (0x77059F72) (ntdll): (filename not available): RtlInitializeExceptionChain
    (0x77059F45) (ntdll): (filename not available): RtlInitializeExceptionChain

    ========== END OF STACKTRACE ===========

    **** Crash! ****
    output_log
     
  30. MrFata

    MrFata

    Joined:
    May 11, 2014
    Posts:
    1
    Im running Unity 4.5.1f3 with the same issue but im here with a fix.

    Code (CSharp):
    1. void OnGUI()
    2.     {
    3.         if(GUI.Button(new Rect(Screen.width - (100 + 10), 30, 100, 30), "Quit"))
    4.         {
    5.             AskQuit();
    6.         }
    7.     }
    8.  
    9.     void AskQuit()
    10.     {
    11.         if (Application.isEditor)
    12.         {
    13.             Debug.Log("Cannot quit the application (Application is editor).");
    14.         }
    15.         else
    16.         {
    17.             System.Diagnostics.Process.GetCurrentProcess().Kill();
    18.         }
    19.     }
    enjoy!
     
  31. shkar-noori

    shkar-noori

    Joined:
    Jun 10, 2013
    Posts:
    833
    same problem here on 4.5.1f3p4, the error is caused by not unloading d3dx11, DX11 mode enabled, x86_x64, PC Standalone,
     
    HunterTank95 likes this.
  32. HunterTank95

    HunterTank95

    Joined:
    Mar 14, 2014
    Posts:
    43
    I concur with Shkarface Noori. This issue is only present when I enable DX11.

    Sincere thanks to all who posted the workaround. Life Saver! ^_^
     
  33. Dantus

    Dantus

    Joined:
    Oct 21, 2009
    Posts:
    5,667
    There was exactly one person who submitted a bug report and that one was solved already. You guys still have the issue, why don't you submit another bug report and post the numbers here?
     
  34. konsnos

    konsnos

    Joined:
    Feb 13, 2012
    Posts:
    121
    Application.Quit() doesn't seem to be supported at Windows Store. I assume this is a bug? I'm just building for Windows Store, then run in debug, after a key press call Application.Quit() and goes boom.
     
  35. Dantus

    Dantus

    Joined:
    Oct 21, 2009
    Posts:
    5,667
    Please, don't consider to submit a bug report and to post the case number here, because they might resolve the issue!
     
  36. konsnos

    konsnos

    Joined:
    Feb 13, 2012
    Posts:
    121
    Huh? I'm just asking if it should work or not. Windows Store/Phone have a lot of differences in the API than the rest of the platforms. I was hoping for people to confirm it. And I hope I'm misunderstood but I see irony in your post.
     
  37. Dantus

    Dantus

    Joined:
    Oct 21, 2009
    Posts:
    5,667
    If something goes boom, it is always a bug...
     
  38. Aurore

    Aurore

    Director of Real-Time Learning

    Joined:
    Aug 1, 2012
    Posts:
    3,106
  39. konsnos

    konsnos

    Joined:
    Feb 13, 2012
    Posts:
    121
    Oh, no. It's not a problem on Windows Phone. It works perfectly there. It's just the Windows Store. The applications crashes and exits which is not too bad since that's what I wanted by calling this function (except from the crash). If time allows it, I'll try to create a bug report today.
     
  40. konsnos

    konsnos

    Joined:
    Feb 13, 2012
    Posts:
    121
    @Aurore
    Bug reported. Case ticket is 632557_sjvem59dopua9hp9
     
    Aurore likes this.
  41. konsnos

    konsnos

    Joined:
    Feb 13, 2012
    Posts:
    121
    Sorry to pester you guys, but are there any news of this? Any acknowledgement of the bug?
     
  42. UnityMW2

    UnityMW2

    Joined:
    Dec 14, 2014
    Posts:
    1
    I had this problem with Unity 4.6, and I found the problem. If you are using d3d11, make sure you have
    "project settings->player->settings for pc-> D3D11 Force Exclusive Mode " checked.
     
  43. chechoggomez

    chechoggomez

    Unity Technologies

    Joined:
    Feb 25, 2013
    Posts:
    91
    Hey guys, this is not a bug, you don't need to allow people to close the game on WSA and in fact you should not allow people to close your app, because of this :

    http://msdn.microsoft.com/en-us/library/windows/apps/hh464925.aspx

    Go to 'App close'

    App close
    Generally, users don't need to close apps, they can let the OS manage them. However, users can choose to close an app using the close gesture or by pressing Alt+F4 on Windows or by using the task switcher on Windows Phone. You can't include any UI in your app to enable the user to close your app, or it won't pass the Store certification process.

    OS will close the app itself, when needed.
     
    konsnos and unimechanic like this.
  44. Snownebula

    Snownebula

    Joined:
    Nov 29, 2013
    Posts:
    174
    And how do you program App close?