Quantcast
Channel: Questions in topic: "dllimport"
Viewing all articles
Browse latest Browse all 160

How to use low-level Windows API keyboard hook to capture Print Screen key

$
0
0
Hi, I'm trying to implement some behaviour when the player presses "print screen" on Windows. For some reason the following does not work: if (Input.GetKeyDown (KeyCode.Print)) { ... } I've also tried: Input.GetKeyUp (KeyCode.Print) ... as suggested here: http://stackoverflow.com/questions/4292925/keydown-event-not-working-on-printscreen-key but that doesn't work for me either. It might have something to do with the laptop I'm on where the print screen function is on the 'Delete' button with the 'Fn' key held down. Anyway, either way it needs to work on all machines running Windows, including laptops. I followed the advice in the link above to this website: http://www.codeproject.com/Articles/14485/Low-level-Windows-API-hooks-from-C-to-stop-unwante which explains how to hook into low-level Windows APIs to capture key strokes. Here is my simplified implementation which looks solely for key code 44, which is the print screen key code: using UnityEngine; using System.Collections; using System; using System.Diagnostics; using System.Runtime.InteropServices; public class KeyLogger : MonoBehaviour { private const int WH_KEYBOARD_LL = 13; private const int WM_KEYDOWN = 0x0100; private static LowLevelKeyboardProc _proc = HookCallback; private static IntPtr _hookID = IntPtr.Zero; // Keys we are interested in public static bool PRINT_SCREEN; void Start () { _hookID = SetHook (_proc); } void OnApplicationQuit () { UnhookWindowsHookEx (_hookID); } private static IntPtr SetHook (LowLevelKeyboardProc proc) { using (Process curProcess = Process.GetCurrentProcess()) { using (ProcessModule curModule = curProcess.MainModule) { return SetWindowsHookEx (WH_KEYBOARD_LL, proc, GetModuleHandle (curModule.ModuleName), 0); } } } private delegate IntPtr LowLevelKeyboardProc (int nCode,IntPtr wParam,IntPtr lParam); private static IntPtr HookCallback (int nCode, IntPtr wParam, IntPtr lParam) { if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN) { int vkCode = Marshal.ReadInt32 (lParam); switch (vkCode) { case 44: PRINT_SCREEN = true; break; } } return CallNextHookEx (_hookID, nCode, wParam, lParam); } void LateUpdate(){ // Reset all keys so they are only true in a single Update() PRINT_SCREEN = false; } [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr SetWindowsHookEx (int idHook, LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId); [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool UnhookWindowsHookEx (IntPtr hhk); [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr CallNextHookEx (IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam); [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr GetModuleHandle (string lpModuleName); } I can then check the static bool PRINT_SCREEN during any Update() function to see if the key has been pressed. I can confirm that THE ABOVE CODE WORKS but only in the Unity editor player. When I build for Windows I get the following errors: Unity Player [version: Unity 4.3.4f1_e444f76e01cd] mono.dll caused an Access Violation (0xc0000005) in module mono.dll at 0023:100010c6. Error occurred at 2014-11-27_164352. D:\test\test.exe, run by Tim. 45% memory in use. 0 MB physical memory [0 MB free]. 0 MB paging file [0 MB free]. 0 MB user address space [3138 MB free]. Read from location 00000000 caused an access violation. Context: EDI: 0x03d4b1a4 ESI: 0x101b7110 EAX: 0x00000000 EBX: 0x15d71580 ECX: 0x1011513c EDX: 0xff3ee000 EIP: 0x100010c6 EBP: 0x005bf33c SegCs: 0x00000023 EFlags: 0x00010246 ESP: 0x005bf330 SegSs: 0x0000002b Bytes at CS:EIP: ff 30 e8 6a f1 10 00 83 c4 0c c9 c3 55 8b ec 8d Stack: 0x005bf330: 101f1980 101f1960 15d7f980 005bf354 ....`.......T.[. 0x005bf340: 100010e7 00000000 00000004 101e80b0 ................ 0x005bf350: 005bf368 005bf39c 100e87a8 00000000 h.[...[......... 0x005bf360: 00000004 101e80b0 101b7110 000000b7 .........q...... 0x005bf370: 101b7130 15dcaea0 15d24038 00000000 0q......8@...... 0x005bf380: 101b7110 15d71580 15cca918 005bf3a4 .q............[. 0x005bf390: 00000009 ffffffff 101b7110 005bf3f8 .........q....[. 0x005bf3a0: 100e9593 03d4b17c 005bf438 04478e99 ....|...8.[...G. 0x005bf3b0: 15d71580 005bf408 005bf3f4 277f7e70 ......[...[.p~.' 0x005bf3c0: 00000000 0441e5e8 0000000b 00000000 ......A......... 0x005bf3d0: 15c927bc 0000000b 00000000 00000000 .'.............. 0x005bf3e0: 00000000 00000000 00000000 03d4b17c ............|... 0x005bf3f0: 005bf488 00000000 005bf488 03bb0066 ..[.......[.f... 0x005bf400: 005bf438 04478e99 ffffffff 00000000 8.[...G......... 0x005bf410: 03ba2e59 03ba04a8 ffffffff 005bf460 Y...........`.[. 0x005bf420: 0441e5e8 277f7e70 00000000 005bf488 ..A.p~.'......[. 0x005bf430: 04478e99 04474c4a 03d4b1a4 03ba04a8 ..G.JLG......... 0x005bf440: 15d71580 0441e5e8 005bf44c 005bf488 ......A.L.[...[. 0x005bf450: 00000000 277f7e70 ffffffff 04478e99 ....p~.'......G. 0x005bf460: 2787aa80 03ba2e58 2787cf78 03ba04a8 ...'X...x..'.... 0x005bf470: 03ba2e58 00000000 005bf47c 005bf4a8 X.......|.[...[. 0x005bf480: 00000000 277f7e70 005bf4a8 04474c4a ....p~.'..[.JLG. 0x005bf490: 2787cf78 2787aa80 005bf49c 005bf4c8 x..'...'..[...[. 0x005bf4a0: 2787cf78 2787cf78 005bf4c8 04478e0c x..'x..'..[...G. 0x005bf4b0: 2787cf78 2787aa80 005bf4bc 005bf4f8 x..'...'..[...[. 0x005bf4c0: 277f7e70 277f7e70 005bf4f8 04478d4c p~.'p~.'..[.L.G. 0x005bf4d0: 2787cf78 2787aa80 04478cc8 277f7e70 x..'...'..G.p~.' 0x005bf4e0: 03ba2e58 0441e5e8 005bf4ec 2787aa80 X.....A...[....' 0x005bf4f0: 2787cf78 005bf6e8 005bf518 04478cd9 x..'..[...[...G. 0x005bf500: 277f7e70 0441e5e8 005bf50c 005bf538 p~.'..A...[.8.[. 0x005bf510: 277f7e70 005bf6e8 005bf538 04478c94 p~.'..[.8.[...G. 0x005bf520: 277f7e70 0441e5e8 005bf52c 005bf578 p~.'..A.,.[.x.[. 0x005bf530: 15d46a70 15d46a70 005bf578 04478922 pj..pj..x.[.".G. 0x005bf540: 277f7e70 005bf6e8 005bf578 04478911 p~.'..[.x.[...G. 0x005bf550: 044788dd 00000018 15bab8f8 00000000 ..G............. 0x005bf560: 277f7e70 0441e5e8 005bf56c 005bf598 p~.'..A.l.[...[. 0x005bf570: 15d46a70 005bf6e8 005bf598 044788dd pj....[...[...G. 0x005bf580: 15bab8f8 03a54e70 005bf5e8 10130518 ....pN....[..... 0x005bf590: 0a94fcd8 005bf5a8 005bf5e0 0441e629 ......[...[.).A. 0x005bf5a0: 15b83200 00000000 005bf5c8 101101ee .2........[..... 0x005bf5b0: 03ba0000 00000000 0000000c 00000000 ................ 0x005bf5c0: 03cc0198 00000000 00000000 10001d3d ............=... 0x005bf5d0: 0000000c 0a9ed918 03cc06c0 15d46a70 ............pj.. 0x005bf5e0: 005bf610 100efede 15b83200 00000000 ..[......2...... 0x005bf5f0: 005bf6e8 044788c8 00010000 15fdca80 ..[...G......... 0x005bf600: 0a9ed918 00000000 03a54e70 00000000 ........pN...... 0x005bf610: 005bf634 1005d680 0a9ed918 15b83200 4.[..........2.. 0x005bf620: 00000000 005bf6e8 00000000 155d0764 ......[.....d.]. 0x005bf630: 15fdca80 005bf6ac 00eb8189 0a9ed918 ......[......... 0x005bf640: 15b83200 00000000 005bf6e8 155d0764 .2........[.d.]. 0x005bf650: 15fdca80 15b83200 00000113 00000001 .....2.......... 0x005bf660: 00030aa0 00000001 01a491e0 00000000 ................ 0x005bf670: 02d90d8c 02d18024 005bf690 02d900bc ....$.....[..... 0x005bf680: 02d18024 005bf69c 011a9ebe 02d900bc $.....[......... 0x005bf690: 00c60fe4 02d900c4 15fd7500 15fdca80 .........u...... 0x005bf6a0: 005bf6b8 15b83200 15fd7500 005bf6ec ..[..2...u....[. 0x005bf6b0: 00eb8478 155d0764 00000000 005bf6e8 x...d.].......[. 0x005bf6c0: 02d5a03c 15fdca80 00000000 02d5a03c <...........<... 0x005bf6d0: 02d18dc4 00002cd0 047150c8 005bf700 .....,...Pq...[. 0x005bf6e0: 00e8cb72 047151a8 00000000 005bf700 r....Qq.......[. 0x005bf6f0: 00eb888f 155d0764 00000000 00000000 ....d.]......... 0x005bf700: 005bf76c 00e8d29e 15fdca80 00000000 l.[............. 0x005bf710: a40fc212 0000000c 00000000 02d18dc4 ................ 0x005bf720: 0478e164 047a526c 02d18dc4 047a526c d.x.lRz.....lRz. 0x005bf730: 047a526c 00f0154e 3ca3d70a 0468f5b8 lRz.N......<..h. 0x005bf740: 7731b7bf 0468f894 00000001 3ca3d70a ..1w..h........< 0x005bf750: 047150c8 00000001 00000000 00eb8850 .Pq.........P... 0x005bf760: 15fdca80 00000000 02d5a014 005bf82c ............,.[. 0x005bf770: 00f284ba 00000004 00000000 00000000 ................ 0x005bf780: 75b198c0 00000000 00a209f8 00000000 ...u............ 0x005bf790: 00000000 7590a3ef 00000161 005bf800 .......ua.....[. 0x005bf7a0: 00dbe2c6 005bf800 00f01917 00000001 ......[......... 0x005bf7b0: 00dbe2d2 00000000 e219b647 fffffffe ........G....... 0x005bf7c0: 005bf82c 759097f4 7503256c 00000000 ,.[....ul%.u.... 0x005bf7d0: 00000113 00000001 00000000 fffffe8d ................ 0x005bf7e0: 00000000 97d23563 75b198c0 00000000 ....c5.....u.... 0x005bf7f0: 005bf828 00f01917 00000001 00dbe6b2 (.[............. 0x005bf800: 75b198c0 00000000 00000000 00000000 ...u............ 0x005bf810: 80000000 0fa00000 01a3d890 00000001 ................ 0x005bf820: 02d414d4 0468f894 015bf838 005bf868 ......h.8.[.h.[. 0x005bf830: 00f806eb 00000000 00000001 00000000 ................ 0x005bf840: 00000010 00000001 00310a0a 00000113 ..........1..... 0x005bf850: 00000001 00000000 01624684 000004fe .........Fb..... 0x005bf860: 000002d6 00000580 005bf980 00f81efb ..........[..... 0x005bf870: 00000000 00000000 ff3ea000 742f3a44 ..........>.D:/t 0x005bf880: 00747365 016debd8 7fffffff 00000007 est...m......... 0x005bf890: 0000000f 00c62308 02d19d00 0000000f .....#.......... 0x005bf8a0: 0000000f 7fffffff 00000000 0000000f ................ 0x005bf8b0: 00c61888 6f6e6f00 6374652f 005bf800 .....ono/etc..[. 0x005bf8c0: 01215829 00000000 0000000f 0000000f )X!............. 0x005bf8d0: 02d19e10 02d19e48 02d19e48 0175cb78 ....H...H...x.u. 0x005bf8e0: 02d19894 00c605a8 005bf900 957edba8 ..........[...~. 0x005bf8f0: 00000011 0000001f 00c60000 00c7373c ............<7.. 0x005bf900: 02d198fc 00000004 005bf840 772fa68c ........@.[.../w 0x005bf910: 00000020 0000002f 49656e69 02d19e00 .../...ineI.... 0x005bf920: 00000000 00000000 015bde2c 00000000 ........,.[..... 0x005bf930: 0000000f 005bf964 00000000 616e614d ....d.[.....Mana 0x005bf940: 00646567 01203963 00000000 00000007 ged.c9 ......... 0x005bf950: 0000000f 01203970 00c7373c 6f6e6f4d ....p9 .<7..Mono 0x005bf960: 6e6f6d2f 6c642e6f 0100006c 0000000d /mono.dll....... 0x005bf970: 0000000f 00c61888 00000000 00000000 ................ 0x005bf980: 005bf998 011ceb28 00da0000 00000000 ..[.(........... 0x005bf990: 007a1f8b 00000001 005bfa28 01200490 ..z.....(.[... . 0x005bf9a0: 00da0000 00000000 007a1f8b 00000001 ..........z..... 0x005bf9b0: f3efd68a 00000000 00000000 ff3ea000 ..............>. 0x005bf9c0: 00000044 007a0afc 007a0adc 007a0aba D.....z...z...z. 0x005bf9d0: 00000000 00000000 00000000 00000000 ................ 0x005bf9e0: 00000000 00000000 00000000 00000401 ................ 0x005bf9f0: 00000001 00000000 00000000 00010001 ................ 0x005bfa00: 00000000 c0000005 00000000 00000000 ................ 0x005bfa10: 005bf9b0 005bed5c 005bfa68 01201c60 ..[.\.[.h.[.`. . 0x005bfa20: f2c0b012 00000000 005bfa34 75b1919f ........4.[....u 0x005bfa30: ff3ea000 005bfa78 77310bbb ff3ea000 ..>.x.[...1w..>. 0x005bfa40: 957ed9bc 00000000 00000000 ff3ea000 ..~...........>. 0x005bfa50: c0000005 00007ffb 005bed40 75529cab ........@.[...Ru 0x005bfa60: 005bfa40 005bed40 005bfa80 773527e1 @.[.@.[...[..'5w 0x005bfa70: e214280c 00000000 005bfa88 77310b91 .(........[...1w 0x005bfa80: ffffffff 772fc9d4 00000000 00000000 ....../w........ 0x005bfa90: 012004e3 ff3ea000 00000000 00000000 .. ...>......... 0x005bfaa0: 00000000 00000000 00000000 00000000 ................ 0x005bfab0: 00000000 00000000 00000000 00000000 ................ 0x005bfac0: 00000000 00000000 00000000 00000000 ................ 0x005bfad0: 00000000 00000000 00000000 00000000 ................ 0x005bfae0: 00000000 00000000 00000000 00000000 ................ 0x005bfaf0: 00000000 00000000 00000000 00000000 ................ 0x005bfb00: 00000000 00000000 00000000 00000000 ................ 0x005bfb10: 00000000 00000000 00000000 00000000 ................ 0x005bfb20: 00000000 00000000 00000000 00000000 ................ 0x005bfb30: 00000000 00000000 00000000 00000000 ................ 0x005bfb40: 00000000 00000000 00000000 00000000 ................ 0x005bfb50: 00000000 00000000 00000000 00000000 ................ 0x005bfb60: 00000000 00000000 00000000 00000000 ................ 0x005bfb70: 00000000 00000000 00000000 00000000 ................ 0x005bfb80: 00000000 00000000 00000000 00000000 ................ 0x005bfb90: 00000000 00000000 00000000 00000000 ................ 0x005bfba0: 00000000 00000000 00000000 00000000 ................ 0x005bfbb0: 00000000 00000000 00000000 00000000 ................ 0x005bfbc0: 00000000 00000000 00000000 00000000 ................ 0x005bfbd0: 00000000 00000000 00000000 00000000 ................ 0x005bfbe0: 00000000 00000000 00000000 00000000 ................ 0x005bfbf0: 00000000 00000000 00000000 00000000 ................ 0x005bfc00: 00000000 00000000 00000000 00000000 ................ 0x005bfc10: 00000000 00000000 00000000 00000000 ................ 0x005bfc20: 00000000 00000000 00000000 00000000 ................ 0x005bfc30: 00000000 00000000 00000000 00000000 ................ 0x005bfc40: 00000000 00000000 00000000 00000000 ................ 0x005bfc50: 00000000 00000000 00000000 00000000 ................ 0x005bfc60: 00000000 00000000 00000000 00000000 ................ 0x005bfc70: 00000000 00000000 00000000 00000000 ................ 0x005bfc80: 00000000 00000000 00000000 00000000 ................ 0x005bfc90: 00000000 00000000 00000000 00000000 ................ 0x005bfca0: 00000000 00000000 00000000 00000000 ................ 0x005bfcb0: 00000000 00000000 00000000 00000000 ................ 0x005bfcc0: 00000000 00000000 00000000 00000000 ................ 0x005bfcd0: 00000000 00000000 00000000 00000000 ................ 0x005bfce0: 00000000 00000000 00000000 00000000 ................ 0x005bfcf0: 00000000 00000000 00000000 00000000 ................ 0x005bfd00: 00000000 00000000 00000000 00000000 ................ 0x005bfd10: 00000000 00000000 00000000 00000000 ................ 0x005bfd20: 00000000 00000000 00000000 00000000 ................ 0x005bfd30: 00000000 00000000 00000000 00000000 ................ 0x005bfd40: 00000000 00000000 00000000 00000000 ................ 0x005bfd50: 00000000 00000000 00000000 00000000 ................ 0x005bfd60: 00000000 00000000 00000000 00000000 ................ 0x005bfd70: 00000000 00000000 00000000 00000000 ................ 0x005bfd80: 00000000 00000000 00000000 00000000 ................ 0x005bfd90: 00000000 00000000 00000000 00000000 ................ 0x005bfda0: 00000000 00000000 00000000 00000000 ................ 0x005bfdb0: 00000000 00000000 00000000 00000000 ................ 0x005bfdc0: 00000000 00000000 00000000 00000000 ................ 0x005bfdd0: 00000000 00000000 00000000 00000000 ................ 0x005bfde0: 00000000 00000000 00000000 00000000 ................ 0x005bfdf0: 00000000 00000000 00000000 00000000 ................ 0x005bfe00: 00000000 00000000 00000000 00000000 ................ 0x005bfe10: 00000000 00000000 00000000 00000000 ................ 0x005bfe20: 00000000 00000000 00000000 00000000 ................ 0x005bfe30: 00000000 00000000 00000000 00000000 ................ 0x005bfe40: 00000000 00000000 00000000 00000000 ................ 0x005bfe50: 00000000 00000000 00000000 00000000 ................ 0x005bfe60: 00000000 00000000 00000000 00000000 ................ 0x005bfe70: 00000000 00000000 00000000 00000000 ................ 0x005bfe80: 00000000 00000000 00000000 00000000 ................ 0x005bfe90: 00000000 00000000 00000000 00000000 ................ 0x005bfea0: 00000000 00000000 00000000 00000000 ................ 0x005bfeb0: 00000000 00000000 00000000 00000000 ................ 0x005bfec0: 00000000 00000000 00000000 00000000 ................ 0x005bfed0: 00000000 00000000 00000000 00000000 ................ 0x005bfee0: 00000000 00000000 00000000 00000000 ................ 0x005bfef0: 00000000 00000000 00000000 00000000 ................ 0x005bff00: 00000000 00000000 00000000 00000000 ................ 0x005bff10: 00000000 00000000 00000000 00000000 ................ 0x005bff20: 00000000 00000000 00000000 00000000 ................ 0x005bff30: 00000000 00000000 00000000 00000000 ................ 0x005bff40: 00000000 00000000 00000000 00000000 ................ 0x005bff50: 00000000 00000000 00000000 00000000 ................ 0x005bff60: 00000000 00000000 00000000 00000000 ................ 0x005bff70: 00000000 00000000 00000000 00000000 ................ 0x005bff80: 00000000 00000000 00000000 00000000 ................ 0x005bff90: 00000000 00000000 00000000 00000000 ................ 0x005bffa0: 00000000 00000000 00000000 00000000 ................ 0x005bffb0: 00000000 00000000 00000000 00000000 ................ 0x005bffc0: 00000000 00000000 00000000 00000000 ................ 0x005bffd0: 00000000 00000000 00000000 00000000 ................ 0x005bffe0: 00000000 00000000 00000000 00000000 ................ 0x005bfff0: 00000000 00000000 00000000 00000000 ................ Module 1 C:\WINDOWS\SYSTEM32\xinput1_3.dll Image Base: 0x00400000 Image Size: 0x00016000 File Size: 81768 File Time: 2007-04-04_185342 Version: Company: Microsoft Corporation Product: Microsoft® DirectX for Windows® FileDesc: Microsoft Common Controller API FileVer: 9.18.944.0 ProdVer: 9.18.944.0 Module 2 D:\test\test.exe Image Base: 0x00da0000 Image Size: 0x00b65000 File Size: 11288064 File Time: 2014-11-27_164346 Version: Company: Product: FileDesc: FileVer: 4.3.4.31067 ProdVer: 4.3.4.31067 Module 3 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\detoured.dll Image Base: 0x0f000000 Image Size: 0x00006000 File Size: 10952 File Time: 2014-10-30_045326 Version: Company: Product: FileDesc: FileVer: 0.0.0.0 ProdVer: 0.0.0.0 Module 4 D:\test\test_Data\Mono\mono.dll Image Base: 0x10000000 Image Size: 0x0022e000 File Size: 2100224 File Time: 2014-01-23_222146 Version: Company: Product: FileDesc: FileVer: 0.0.0.0 ProdVer: 0.0.0.0 Module 5 C:\WINDOWS\SYSTEM32\dsound.dll Image Base: 0x5ca20000 Image Size: 0x00079000 File Size: 485888 File Time: 2013-08-22_035040 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: DirectSound FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 6 C:\WINDOWS\SYSTEM32\DDRAW.dll Image Base: 0x5ce00000 Image Size: 0x000e7000 File Size: 527872 File Time: 2013-08-22_023332 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft DirectDraw FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 7 C:\WINDOWS\SYSTEM32\OPENGL32.dll Image Base: 0x5f390000 Image Size: 0x000d4000 File Size: 737280 File Time: 2013-08-22_040322 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: OpenGL Client DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 8 C:\WINDOWS\system32\igdumdim32.dll Image Base: 0x621c0000 Image Size: 0x01644000 File Size: 23390216 File Time: 2014-10-03_173646 Version: Company: Intel Corporation Product: Intel HD Graphics Drivers for Windows 8(R) FileDesc: User Mode Driver for Intel(R) Graphics Technology FileVer: 10.18.10.3960 ProdVer: 10.18.10.3960 Module 9 C:\WINDOWS\SYSTEM32\dbghelp.dll Image Base: 0x66380000 Image Size: 0x00148000 File Size: 1238016 File Time: 2014-09-24_072440 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows Image Helper FileVer: 6.3.9600.16520 ProdVer: 6.3.9600.16520 Module 10 C:\WINDOWS\SYSTEM32\icm32.dll Image Base: 0x669f0000 Image Size: 0x0003b000 File Size: 222720 File Time: 2013-08-22_025150 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Color Management Module (CMM) FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 11 C:\WINDOWS\SYSTEM32\wdmaud.drv Image Base: 0x66df0000 Image Size: 0x00034000 File Size: 187392 File Time: 2013-08-22_023626 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Winmm audio system driver FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 12 C:\WINDOWS\SYSTEM32\midimap.dll Image Base: 0x69070000 Image Size: 0x00008000 File Size: 18944 File Time: 2013-08-22_040412 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft MIDI Mapper FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 13 C:\WINDOWS\SYSTEM32\msacm32.drv Image Base: 0x69080000 Image Size: 0x00009000 File Size: 22016 File Time: 2013-08-22_035914 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Sound Mapper FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 14 C:\WINDOWS\SYSTEM32\GLU32.dll Image Base: 0x692a0000 Image Size: 0x00024000 File Size: 136704 File Time: 2013-08-22_040600 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: OpenGL Utility Library DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 15 C:\WINDOWS\SYSTEM32\DCIMAN32.dll Image Base: 0x69700000 Image Size: 0x00007000 File Size: 11264 File Time: 2013-08-22_040606 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: DCI Manager FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 16 C:\WINDOWS\SYSTEM32\ksuser.dll Image Base: 0x69d30000 Image Size: 0x00007000 File Size: 18616 File Time: 2013-08-22_051914 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: User CSA Library FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 17 C:\WINDOWS\SYSTEM32\mscms.dll Image Base: 0x69f20000 Image Size: 0x00077000 File Size: 477696 File Time: 2013-08-22_023802 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Color Matching System DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 18 C:\WINDOWS\SYSTEM32\igdusc32.dll Image Base: 0x69fa0000 Image Size: 0x00865000 File Size: 4619992 File Time: 2014-10-03_173650 Version: Company: Intel Corporation Product: Intel HD Graphics Drivers for Windows 8(R) FileDesc: Unified Shader Compiler for Intel(R) Graphics Accelerator FileVer: 10.18.10.3960 ProdVer: 10.18.10.3960 Module 19 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvdxgiwrap.dll Image Base: 0x6a810000 Image Size: 0x0001f000 File Size: 108424 File Time: 2014-10-30_045326 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA dxgiwrap dll, Version 344.60 FileVer: 9.18.13.4460 ProdVer: 9.18.13.4460 Module 20 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvd3d9wrap.dll Image Base: 0x6a830000 Image Size: 0x0002b000 File Size: 159400 File Time: 2014-10-30_045326 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA d3d9wrap dll, Version 344.60 FileVer: 9.18.13.4460 ProdVer: 9.18.13.4460 Module 21 C:\WINDOWS\system32\nvinit.dll Image Base: 0x6a860000 Image Size: 0x0002c000 File Size: 156840 File Time: 2014-10-30_045326 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA shim initialization dll, Version 344.60 FileVer: 9.18.13.4460 ProdVer: 9.18.13.4460 Module 22 C:\WINDOWS\SYSTEM32\nvumdshim.dll Image Base: 0x6a890000 Image Size: 0x000dd000 File Size: 870112 File Time: 2014-10-30_045326 Version: Company: NVIDIA Corporation Product: NVIDIA D3D shim drivers FileDesc: NVIDIA D3D Shim Driver, Version 344.60 FileVer: 9.18.13.4460 ProdVer: 9.18.13.4460 Module 23 C:\WINDOWS\SYSTEM32\d3d9.dll Image Base: 0x6aa40000 Image Size: 0x001b8000 File Size: 1797896 File Time: 2014-04-14_080846 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Direct3D 9 Runtime FileVer: 6.3.9600.17095 ProdVer: 6.3.9600.17095 Module 24 C:\WINDOWS\SYSTEM32\MMDevAPI.DLL Image Base: 0x6b100000 Image Size: 0x0004a000 File Size: 296448 File Time: 2014-09-24_072342 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: MMDevice API FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 25 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL Image Base: 0x6b150000 Image Size: 0x00060000 File Size: 370424 File Time: 2014-10-07_033404 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Audio Session FileVer: 6.3.9600.17393 ProdVer: 6.3.9600.17393 Module 26 C:\WINDOWS\SYSTEM32\WINMMBASE.dll Image Base: 0x6b660000 Image Size: 0x00020000 File Size: 127544 File Time: 2014-09-24_073300 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Base Multimedia Extension API DLL FileVer: 6.3.9600.17080 ProdVer: 6.3.9600.17080 Module 27 C:\WINDOWS\SYSTEM32\powrprof.dll Image Base: 0x6b6f0000 Image Size: 0x0003e000 File Size: 251504 File Time: 2014-09-24_072408 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Power Profile Helper DLL FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 28 C:\WINDOWS\SYSTEM32\AVRT.dll Image Base: 0x6b860000 Image Size: 0x00009000 File Size: 30464 File Time: 2013-08-22_052500 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Multimedia Realtime Runtime FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 29 C:\WINDOWS\SYSTEM32\MSACM32.dll Image Base: 0x6bd20000 Image Size: 0x00015000 File Size: 86192 File Time: 2013-08-22_051924 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft ACM Audio Filter FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 30 C:\WINDOWS\SYSTEM32\WINMM.dll Image Base: 0x6bd60000 Image Size: 0x00020000 File Size: 128568 File Time: 2014-09-24_073300 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: MCI API DLL FileVer: 6.3.9600.17078 ProdVer: 6.3.9600.17078 Module 31 C:\WINDOWS\system32\apphelp.dll Image Base: 0x715c0000 Image Size: 0x00099000 File Size: 617472 File Time: 2014-09-24_072412 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Application Compatibility Client Library FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 32 C:\WINDOWS\SYSTEM32\USERENV.dll Image Base: 0x716c0000 Image Size: 0x00019000 File Size: 94016 File Time: 2014-09-24_075036 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Userenv FileVer: 6.3.9600.17041 ProdVer: 6.3.9600.17041 Module 33 C:\WINDOWS\SYSTEM32\HID.DLL Image Base: 0x71920000 Image Size: 0x0000a000 File Size: 25600 File Time: 2013-08-22_025446 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Hid User Library FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 34 C:\WINDOWS\system32\dwmapi.dll Image Base: 0x71dd0000 Image Size: 0x00018000 File Size: 98048 File Time: 2014-09-24_073300 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Desktop Window Manager API FileVer: 6.3.9600.17238 ProdVer: 6.3.9600.17238 Module 35 C:\WINDOWS\system32\uxtheme.dll Image Base: 0x71df0000 Image Size: 0x000db000 File Size: 876544 File Time: 2014-09-24_072414 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft UxTheme Library FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 36 C:\WINDOWS\SYSTEM32\profapi.dll Image Base: 0x747a0000 Image Size: 0x0000e000 File Size: 51128 File Time: 2013-08-22_051754 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: User Profile Basic API FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 37 C:\WINDOWS\SYSTEM32\shcore.dll Image Base: 0x747b0000 Image Size: 0x00076000 File Size: 477200 File Time: 2014-09-24_073316 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: SHCORE FileVer: 6.3.9600.17238 ProdVer: 6.3.9600.17238 Module 38 C:\WINDOWS\SYSTEM32\WINHTTP.dll Image Base: 0x74830000 Image Size: 0x00094000 File Size: 589312 File Time: 2013-08-22_023910 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows HTTP Services FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 39 C:\WINDOWS\SYSTEM32\DNSAPI.dll Image Base: 0x748d0000 Image Size: 0x0007c000 File Size: 494592 File Time: 2014-09-24_075038 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: DNS Client API DLL FileVer: 6.3.9600.17039 ProdVer: 6.3.9600.17039 Module 40 C:\WINDOWS\SYSTEM32\MSWSOCK.dll Image Base: 0x74990000 Image Size: 0x00045000 File Size: 270848 File Time: 2013-08-22_025526 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft Windows Sockets 2.0 Service Provider FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 41 C:\WINDOWS\SYSTEM32\WINNSI.DLL Image Base: 0x749e0000 Image Size: 0x00008000 File Size: 25824 File Time: 2013-08-22_132538 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Network Store Information RPC interface FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 42 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL Image Base: 0x749f0000 Image Size: 0x0001e000 File Size: 118776 File Time: 2013-08-22_051754 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: IP Helper API FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 43 C:\WINDOWS\SYSTEM32\ntmarta.dll Image Base: 0x74b80000 Image Size: 0x00025000 File Size: 147152 File Time: 2013-08-22_052930 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows NT MARTA provider FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 44 C:\WINDOWS\SYSTEM32\DEVOBJ.dll Image Base: 0x74bb0000 Image Size: 0x0001f000 File Size: 123416 File Time: 2013-08-22_053142 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Device Information Set DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 45 C:\WINDOWS\SYSTEM32\kernel.appcore.dll Image Base: 0x74bd0000 Image Size: 0x00009000 File Size: 29952 File Time: 2013-08-22_053142 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: AppModel API Host FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 46 C:\WINDOWS\SYSTEM32\VERSION.dll Image Base: 0x74c50000 Image Size: 0x00008000 File Size: 25824 File Time: 2013-08-22_052540 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Version Checking and File Installation Libraries FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 47 C:\WINDOWS\SYSTEM32\bcryptPrimitives.dll Image Base: 0x74c60000 Image Size: 0x00052000 File Size: 335680 File Time: 2014-09-24_073256 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows Cryptographic Primitives Library FileVer: 6.3.9600.17120 ProdVer: 6.3.9600.17120 Module 48 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll Image Base: 0x74cc0000 Image Size: 0x00009000 File Size: 30472 File Time: 2013-08-22_051756 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Base cryptographic API DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 49 C:\WINDOWS\SYSTEM32\SspiCli.dll Image Base: 0x74cd0000 Image Size: 0x0001d000 File Size: 101376 File Time: 2014-09-24_072412 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Security Support Provider Interface FileVer: 6.3.9600.16408 ProdVer: 6.3.9600.16408 Module 50 C:\WINDOWS\SYSTEM32\WS2_32.dll Image Base: 0x74cf0000 Image Size: 0x0004d000 File Size: 313488 File Time: 2013-08-22_051756 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows Socket 2.0 32-Bit DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 51 C:\WINDOWS\SYSTEM32\cfgmgr32.dll Image Base: 0x74d40000 Image Size: 0x0003a000 File Size: 237032 File Time: 2013-08-22_053142 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Configuration Manager DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 52 C:\WINDOWS\SYSTEM32\msvcrt.dll Image Base: 0x74d80000 Image Size: 0x000be000 File Size: 780408 File Time: 2013-08-22_052104 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows NT CRT DLL FileVer: 7.0.9600.16384 ProdVer: 6.1.8638.16384 Module 53 C:\WINDOWS\SYSTEM32\combase.dll Image Base: 0x74e40000 Image Size: 0x0014e000 File Size: 1374384 File Time: 2014-09-24_072416 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft COM for Windows FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 54 C:\WINDOWS\SYSTEM32\NSI.dll Image Base: 0x74fc0000 Image Size: 0x00007000 File Size: 19640 File Time: 2013-08-22_132538 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: NSI User-mode interface DLL FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 55 C:\WINDOWS\SYSTEM32\MSCTF.dll Image Base: 0x75030000 Image Size: 0x000f7000 File Size: 1017936 File Time: 2014-09-24_072336 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: MSCTF Server DLL FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 56 C:\WINDOWS\SYSTEM32\clbcatq.dll Image Base: 0x75130000 Image Size: 0x0007d000 File Size: 508680 File Time: 2013-08-22_052144 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: COM+ Configuration Catalog FileVer: 2001.12.10530.16384 ProdVer: 6.3.9600.16384 Module 57 C:\WINDOWS\SYSTEM32\SHLWAPI.dll Image Base: 0x751b0000 Image Size: 0x00041000 File Size: 263872 File Time: 2013-08-22_052538 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Shell Light-weight Utility Library FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 58 C:\WINDOWS\SYSTEM32\GDI32.dll Image Base: 0x75350000 Image Size: 0x00107000 File Size: 1064448 File Time: 2014-09-24_094410 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: GDI Client DLL FileVer: 6.3.9600.17246 ProdVer: 6.3.9600.17246 Module 59 C:\WINDOWS\SYSTEM32\PSAPI.DLL Image Base: 0x75460000 Image Size: 0x00006000 File Size: 16024 File Time: 2013-08-22_053142 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Process Status Helper FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 60 C:\WINDOWS\SYSTEM32\KERNELBASE.dll Image Base: 0x75470000 Image Size: 0x000d0000 File Size: 838144 File Time: 2014-08-16_013118 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows NT BASE API Client DLL FileVer: 6.3.9600.17278 ProdVer: 6.3.9600.17278 Module 61 C:\WINDOWS\SYSTEM32\SETUPAPI.dll Image Base: 0x75540000 Image Size: 0x001ad000 File Size: 1767440 File Time: 2014-09-24_072408 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows Setup API FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 62 C:\WINDOWS\SYSTEM32\ADVAPI32.dll Image Base: 0x75750000 Image Size: 0x00078000 File Size: 490136 File Time: 2014-09-24_072340 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Advanced Windows 32 Base API FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 63 C:\WINDOWS\SYSTEM32\IMM32.dll Image Base: 0x75830000 Image Size: 0x00025000 File Size: 137728 File Time: 2014-09-24_072340 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Multi-User Windows IMM32 API Client DLL FileVer: 6.3.9600.17031 ProdVer: 6.3.9600.17031 Module 64 C:\WINDOWS\SYSTEM32\OLEAUT32.dll Image Base: 0x75860000 Image Size: 0x00095000 File Size: 602768 File Time: 2014-10-17_065846 Version: Company: Microsoft Corporation Product: FileDesc: FileVer: 6.3.9600.17403 ProdVer: 6.3.9600.17403 Module 65 C:\WINDOWS\SYSTEM32\USER32.dll Image Base: 0x75900000 Image Size: 0x0014c000 File Size: 1346048 File Time: 2014-09-19_001634 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Multi-User Windows USER API Client DLL FileVer: 6.3.9600.17344 ProdVer: 6.3.9600.17344 Module 66 C:\WINDOWS\SYSTEM32\RPCRT4.dll Image Base: 0x75a50000 Image Size: 0x000b0000 File Size: 710144 File Time: 2014-09-24_073314 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Remote Procedure Call Runtime FileVer: 6.3.9600.17216 ProdVer: 6.3.9600.17216 Module 67 C:\WINDOWS\SYSTEM32\KERNEL32.DLL Image Base: 0x75b00000 Image Size: 0x00140000 File Size: 1036288 File Time: 2014-09-24_075036 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows NT BASE API Client DLL FileVer: 6.3.9600.17056 ProdVer: 6.3.9600.17056 Module 68 C:\WINDOWS\SYSTEM32\SHELL32.dll Image Base: 0x75c40000 Image Size: 0x011b7000 File Size: 18723112 File Time: 2014-08-30_225914 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Windows Shell Common Dll FileVer: 6.3.9600.17331 ProdVer: 6.3.9600.17331 Module 69 C:\WINDOWS\SYSTEM32\ole32.dll Image Base: 0x770a0000 Image Size: 0x0010c000 File Size: 1095488 File Time: 2014-09-24_075036 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Microsoft OLE for Windows FileVer: 6.3.9600.17042 ProdVer: 6.3.9600.17042 Module 70 C:\WINDOWS\SYSTEM32\sechost.dll Image Base: 0x771b0000 Image Size: 0x0003e000 File Size: 252024 File Time: 2013-08-22_051756 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: Host for SCM/SDDL/LSA Lookup APIs FileVer: 6.3.9600.16384 ProdVer: 6.3.9600.16384 Module 71 C:\WINDOWS\SYSTEM32\ntdll.dll Image Base: 0x772c0000 Image Size: 0x00167000 File Size: 1467384 File Time: 2014-08-16_030352 Version: Company: Microsoft Corporation Product: Microsoft® Windows® Operating System FileDesc: NT Layer DLL FileVer: 6.3.9600.17278 ProdVer: 6.3.9600.17278 == [end of error.log] == And: Initialize engine version: 4.3.4f1 (e444f76e01cd) GfxDevice: creating device client; threaded=1 Direct3D: Version: Direct3D 9.0c [nvumdshim.dll 9.18.13.4460] Renderer: Intel(R) HD Graphics 4600 Vendor: Intel VRAM: 1792 MB (via DXGI) Caps: Shader=30 DepthRT=1 NativeDepth=1 NativeShadow=1 DF16=1 INTZ=1 RAWZ=0 NULL=1 RESZ=1 SlowINTZ=0 Begin MonoManager ReloadAssembly Platform assembly: D:\test\test_Data\Managed\UnityEngine.dll (this message is harmless) Loading D:\test\test_Data\Managed\UnityEngine.dll into Unity Child Domain Platform assembly: D:\test\test_Data\Managed\Assembly-CSharp-firstpass.dll (this message is harmless) Loading D:\test\test_Data\Managed\Assembly-CSharp-firstpass.dll into Unity Child Domain Platform assembly: D:\test\test_Data\Managed\Assembly-CSharp.dll (this message is harmless) Loading D:\test\test_Data\Managed\Assembly-CSharp.dll into Unity Child Domain - Completed reload, in 0.044 seconds Initializing input. Input initialized. desktop: 1920x1080 60Hz; virtual: 1920x1080 at 0,0 Platform assembly: D:\test\test_Data\Managed\System.Core.dll (this message is harmless) Platform assembly: D:\test\test_Data\Managed\System.dll (this message is harmless) [SingletonPrefab] Using instance already created: Backbone (Filename: C:/BuildAgent/work/d3d49558e4d408f4/artifacts/StandalonePlayerGenerated/UnityEngineDebug.cpp Line: 53) cameraPos = 6,6 (Filename: C:/BuildAgent/work/d3d49558e4d408f4/artifacts/StandalonePlayerGenerated/UnityEngineDebug.cpp Line: 53) Number of gameobjects = 280 (Filename: C:/BuildAgent/work/d3d49558e4d408f4/artifacts/StandalonePlayerGenerated/UnityEngineDebug.cpp Line: 53) Crash!!! SymInit: Symbol-SearchPath: '.;D:\test;D:\test;C:\WINDOWS;C:\WINDOWS\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 530, UserName: 'Tim' OS-Version: 6.2.9200 () 0x300-0x1 D:\test\test.exe:test.exe (00DA0000), size: 11948032 (result: 0), SymType: '-exported-', PDB: 'D:\test\test.exe', fileVersion: 4.3.4.31067 C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (772C0000), size: 1470464 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ntdll.dll', fileVersion: 6.3.9600.17278 C:\WINDOWS\SYSTEM32\KERNEL32.DLL:KERNEL32.DLL (75B00000), size: 1310720 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\KERNEL32.DLL', fileVersion: 6.3.9600.17056 C:\WINDOWS\SYSTEM32\KERNELBASE.dll:KERNELBASE.dll (75470000), size: 851968 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\KERNELBASE.dll', fileVersion: 6.3.9600.17278 C:\WINDOWS\system32\apphelp.dll:apphelp.dll (715C0000), size: 626688 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\apphelp.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\USER32.dll:USER32.dll (75900000), size: 1359872 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\USER32.dll', fileVersion: 6.3.9600.17344 C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (74C50000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\VERSION.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\ole32.dll:ole32.dll (770A0000), size: 1097728 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ole32.dll', fileVersion: 6.3.9600.17042 C:\WINDOWS\SYSTEM32\SHLWAPI.dll:SHLWAPI.dll (751B0000), size: 266240 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SHLWAPI.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\ADVAPI32.dll:ADVAPI32.dll (75750000), size: 491520 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ADVAPI32.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\GDI32.dll:GDI32.dll (75350000), size: 1077248 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\GDI32.dll', fileVersion: 6.3.9600.17246 C:\WINDOWS\SYSTEM32\SHELL32.dll:SHELL32.dll (75C40000), size: 18575360 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SHELL32.dll', fileVersion: 6.3.9600.17331 C:\WINDOWS\SYSTEM32\OPENGL32.dll:OPENGL32.dll (5F390000), size: 868352 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\OPENGL32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\WINMM.dll:WINMM.dll (6BD60000), size: 131072 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINMM.dll', fileVersion: 6.3.9600.17078 C:\WINDOWS\SYSTEM32\WS2_32.dll:WS2_32.dll (74CF0000), size: 315392 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WS2_32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\OLEAUT32.dll:OLEAUT32.dll (75860000), size: 610304 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\OLEAUT32.dll', fileVersion: 6.3.9600.17403 C:\WINDOWS\SYSTEM32\IMM32.dll:IMM32.dll (75830000), size: 151552 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\IMM32.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (748D0000), size: 507904 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DNSAPI.dll', fileVersion: 6.3.9600.17039 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (749F0000), size: 122880 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\WINHTTP.dll:WINHTTP.dll (74830000), size: 606208 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINHTTP.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\HID.DLL:HID.DLL (71920000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\HID.DLL', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\MSACM32.dll:MSACM32.dll (6BD20000), size: 86016 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSACM32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\msvcrt.dll:msvcrt.dll (74D80000), size: 778240 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\msvcrt.dll', fileVersion: 7.0.9600.16384 C:\WINDOWS\SYSTEM32\combase.dll:combase.dll (74E40000), size: 1368064 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\combase.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\RPCRT4.dll:RPCRT4.dll (75A50000), size: 720896 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\RPCRT4.dll', fileVersion: 6.3.9600.17216 C:\WINDOWS\SYSTEM32\sechost.dll:sechost.dll (771B0000), size: 253952 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\sechost.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\GLU32.dll:GLU32.dll (692A0000), size: 147456 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\GLU32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\DDRAW.dll:DDRAW.dll (5CE00000), size: 946176 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DDRAW.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\WINMMBASE.dll:WINMMBASE.dll (6B660000), size: 131072 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINMMBASE.dll', fileVersion: 6.3.9600.17080 C:\WINDOWS\SYSTEM32\NSI.dll:NSI.dll (74FC0000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\NSI.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\MSCTF.dll:MSCTF.dll (75030000), size: 1011712 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSCTF.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\WINNSI.DLL:WINNSI.DLL (749E0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINNSI.DLL', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\SspiCli.dll:SspiCli.dll (74CD0000), size: 118784 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SspiCli.dll', fileVersion: 6.3.9600.16408 C:\WINDOWS\SYSTEM32\DCIMAN32.dll:DCIMAN32.dll (69700000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DCIMAN32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\cfgmgr32.dll:cfgmgr32.dll (74D40000), size: 237568 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\cfgmgr32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\DEVOBJ.dll:DEVOBJ.dll (74BB0000), size: 126976 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DEVOBJ.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll:CRYPTBASE.dll (74CC0000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\CRYPTBASE.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\bcryptPrimitives.dll:bcryptPrimitives.dll (74C60000), size: 335872 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\bcryptPrimitives.dll', fileVersion: 6.3.9600.17120 C:\WINDOWS\SYSTEM32\shcore.dll:shcore.dll (747B0000), size: 483328 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\shcore.dll', fileVersion: 6.3.9600.17238 D:\test\test_Data\Mono\mono.dll:mono.dll (10000000), size: 2285568 (result: 0), SymType: '-exported-', PDB: 'D:\test\test_Data\Mono\mono.dll' C:\WINDOWS\SYSTEM32\PSAPI.DLL:PSAPI.DLL (75460000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\PSAPI.DLL', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\MSWSOCK.dll:MSWSOCK.dll (74990000), size: 282624 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSWSOCK.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (74BD0000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\kernel.appcore.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\system32\uxtheme.dll:uxtheme.dll (71DF0000), size: 897024 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\uxtheme.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\system32\dwmapi.dll:dwmapi.dll (71DD0000), size: 98304 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\dwmapi.dll', fileVersion: 6.3.9600.17238 C:\WINDOWS\SYSTEM32\d3d9.dll:d3d9.dll (6AA40000), size: 1802240 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\d3d9.dll', fileVersion: 6.3.9600.17095 C:\WINDOWS\SYSTEM32\nvumdshim.dll:nvumdshim.dll (6A890000), size: 905216 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\nvumdshim.dll', fileVersion: 9.18.13.4460 C:\WINDOWS\SYSTEM32\SETUPAPI.dll:SETUPAPI.dll (75540000), size: 1757184 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SETUPAPI.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\system32\nvinit.dll:nvinit.dll (6A860000), size: 180224 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\nvinit.dll', fileVersion: 9.18.13.4460 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\detoured.dll:detoured.dll (0F000000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\detoured.dll' C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvd3d9wrap.dll:nvd3d9wrap.dll (6A830000), size: 176128 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvd3d9wrap.dll', fileVersion: 9.18.13.4460 C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvdxgiwrap.dll:nvdxgiwrap.dll (6A810000), size: 126976 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\NVIDIA Corporation\CoProcManager\nvdxgiwrap.dll', fileVersion: 9.18.13.4460 C:\WINDOWS\system32\igdumdim32.dll:igdumdim32.dll (621C0000), size: 23347200 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\igdumdim32.dll', fileVersion: 10.18.10.3960 C:\WINDOWS\SYSTEM32\igdusc32.dll:igdusc32.dll (69FA0000), size: 8802304 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\igdusc32.dll', fileVersion: 10.18.10.3960 C:\WINDOWS\SYSTEM32\mscms.dll:mscms.dll (69F20000), size: 487424 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\mscms.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\USERENV.dll:USERENV.dll (716C0000), size: 102400 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\USERENV.dll', fileVersion: 6.3.9600.17041 C:\WINDOWS\SYSTEM32\profapi.dll:profapi.dll (747A0000), size: 57344 (result: 0), SymType: '-nosymbols-', PDB: 'C:\WINDOWS\SYSTEM32\profapi.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\icm32.dll:icm32.dll (669F0000), size: 241664 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\icm32.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\MMDevAPI.DLL:MMDevAPI.DLL (6B100000), size: 303104 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MMDevAPI.DLL', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\wdmaud.drv:wdmaud.drv (66DF0000), size: 212992 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\wdmaud.drv', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\ksuser.dll:ksuser.dll (69D30000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ksuser.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\AVRT.dll:AVRT.dll (6B860000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\AVRT.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL:AUDIOSES.DLL (6B150000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\AUDIOSES.DLL', fileVersion: 6.3.9600.17393 C:\WINDOWS\SYSTEM32\powrprof.dll:powrprof.dll (6B6F0000), size: 253952 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\powrprof.dll', fileVersion: 6.3.9600.17031 C:\WINDOWS\SYSTEM32\msacm32.drv:msacm32.drv (69080000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\msacm32.drv', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\midimap.dll:midimap.dll (69070000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\midimap.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\dsound.dll:dsound.dll (5CA20000), size: 495616 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dsound.dll', fileVersion: 6.3.9600.16384 C:\WINDOWS\SYSTEM32\clbcatq.dll:clbcatq.dll (75130000), size: 512000 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\clbcatq.dll', fileVersion: 2001.12.10530.16384 C:\WINDOWS\SYSTEM32\xinput1_3.dll:xinput1_3.dll (00400000), size: 90112 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\xinput1_3.dll', fileVersion: 9.18.944.0 C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (66380000), size: 1343488 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dbghelp.dll', fileVersion: 6.3.9600.16520 ========== OUTPUTING STACK TRACE ================== (0x100010C6) (mono): (filename not available): set_vprintf_func + 0xc6 (0x100010E7) (mono): (filename not available): set_vprintf_func + 0xe7 (0x100E87A8) (mono): (filename not available): mono_debugger_run_finally + 0x675 (0x100E9593) (mono): (filename not available): mono_debugger_run_finally + 0x1460 (0x03BB0066) ((module-name not available)): (filename not available): (function-name not available) + 0x0 (0x04474C4A) (Mono JIT code): (filename not available): System.Collections.Generic.List`1:AddRange (System.Collections.Generic.IEnumerable`1) + 0x62 (04474BE8 04474C5D) [03A54E70 - Unity Root Domain] + 0x0 (0x04478E0C) (Mono JIT code): (filename not available): System.Diagnostics.ProcessModuleCollection:.ctor (System.Diagnostics.ProcessModule[]) + 0x24 (04478DE8 04478E15) [03A54E70 - Unity Root Domain] + 0x0 (0x04478D4C) (Mono JIT code): (filename not available): System.Diagnostics.Process:get_Modules () + 0x44 (04478D08 04478D5E) [03A54E70 - Unity Root Domain] + 0x0 (0x04478CD9) (Mono JIT code): (filename not available): System.Diagnostics.Process:get_MainModule () + 0x11 (04478CC8 04478CEE) [03A54E70 - Unity Root Domain] + 0x0 (0x04478C94) (Mono JIT code): (filename not available): (wrapper remoting-invoke-with-check) System.Diagnostics.Process:get_MainModule () + 0x54 (04478C40 04478C9D) [03A54E70 - Unity Root Domain] + 0x0 (0x04478922) (Mono JIT code): (filename not available): KeyLogger:SetHook (KeyLogger/LowLevelKeyboardProc) + 0x2a (044788F8 044789C2) [03A54E70 - Unity Root Domain] + 0x0 (0x044788DD) (Mono JIT code): (filename not available): KeyLogger:Start () + 0x15 (044788C8 044788EB) [03A54E70 - Unity Root Domain] + 0x0 (0x0441E629) (Mono JIT code): (filename not available): (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr) + 0x41 (0441E5E8 0441E67D) [03A54E70 - Unity Root Domain] + 0x0 (0x100EFEDE) (mono): (filename not available): mono_set_defaults + 0x22bf (0x1005D680) (mono): (filename not available): mono_runtime_invoke + 0x51 (0x00EB8189) (test): (filename not available): Behaviour::Transfer> + 0x2c9b9 (0x00EB8478) (test): (filename not available): Behaviour::Transfer> + 0x2cca8 (0x00EB888F) (test): (filename not available): Behaviour::Transfer> + 0x2d0bf (0x00E8D29E) (test): (filename not available): Behaviour::Transfer> + 0x1ace (0x00F284BA) (test): (filename not available): Behaviour::Transfer> + 0x9ccea (0x00F806EB) (test): (filename not available): Behaviour::Transfer> + 0xf4f1b (0x00F81EFB) (test): (filename not available): Behaviour::Transfer> + 0xf672b (0x011CEB28) (test): (filename not available): AnimationEvent::Transfer + 0x1b6398 (0x01200490) (test): (filename not available): AnimationEvent::Transfer + 0x1e7d00 (0x75B1919F) (KERNEL32): (filename not available): BaseThreadInitThunk + 0xe (0x77310BBB) (ntdll): (filename not available): RtlInitializeExceptionChain + 0x84 (0x77310B91) (ntdll): (filename not available): RtlInitializeExceptionChain + 0x5a ========== END OF STACKTRACE =========== **** Crash! **** If I comment out the KeyLogger class then the crash does not occur so I'm convinced it has something to do with it. I get the feeling it is something to do with using the methods in the external DLLs. Things I have tried: 1. Putting a copy of User32.dll and Kernal32.dll in the Plugins folder 2. Putting a copy of User32.dll and Kernal32.dll in the root of the built game folder (next to test.exe) Can anyone help?

Viewing all articles
Browse latest Browse all 160

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>