search for: 0x00000002

Displaying 20 results from an estimated 518 matches for "0x00000002".

Did you mean: 0x00000000
2011 Sep 07
1
Haven't been able to completely install Dragon NaturallySpeaking for several weeks
...><br>Here is the git version terminal output. <br>Git is probably yesterday''s. <br>wine-1.3.27-308-gf74a897 <br>Any ideas?<br><br>fixme:storage:create_storagefile Storage share mode not implemented.<br>fixme:sxs:cache_QueryAssemblyInfo 0x436cc0, 0x00000002, L"Microsoft.VC80.ATL,type=\"win32\",version=\"8.0.50727.4053\",publicKeyToken=\"1fc8b3b9a1e18e3b\",processorArchitecture=\"x86\"", 0x33f888<br>fixme:sxs:cache_QueryAssemblyInfo 0x436cc0, 0x00000002, L"policy.8.0.Microsoft.VC80.ATL,type=\...
2011 Oct 12
2
Error when trying to run DivX player
I successfully installed DivX player 6.6 using wine. But when I try to open the player, I get the following errors. Code: err:module:find_forwarded_export function not found for forward 'msvcrt.__CxxFrameHandler3' used by L"C:\\windows\\system32\\msvcr80.dll". If you are using builtin L"msvcr80.dll", try using the native one instead. err:module:find_forwarded_export
2013 Oct 25
3
drs replication
...Server DN name? : CN=NTDS Settings,CN=MS249-LIN-007,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=rotterdam,DC=bazuin,DC=nl ??????????????? TransportType: RPC ??????????????? options: 0x00000001 ??????????????? ReplicatesNC: DC=rotterdam,DC=bazuin,DC=nl ??????????????? Reason: 0x00000002 ??????????????????????? NTDSCONN_KCC_RING_TOPOLOGY ??????????????? ReplicatesNC: CN=Schema,CN=Configuration,DC=rotterdam,DC=bazuin,DC=nl ??????????????? Reason: 0x00000002 ??????????????????????? NTDSCONN_KCC_RING_TOPOLOGY ??????????????? ReplicatesNC: CN=Configuration,DC=rotterdam,DC=bazuin,DC=nl...
2011 Jun 13
5
New to Wine...and already in trouble...
Hi I've installed Wine on my openSUSE 11.3 x64 box. I'm trying to install Sage Instant accounts but keep getting the Error 1628 message. I've been searching most of the evening and trying the various fixes (run from command line, rename the InstallerShield folder etc) but to no avail. Do I just need to accept that Sage Instant won't work and go back to the (slow) VirtualBox?
2012 Jan 25
0
Re: Using wine for Peoplesoft Development
...e, using InstallAnywhere, which produces a series of "fixme" statements when running, and eventually crashes trying to clean itself up $ wine cmd /c Client/Disk1/setup.bat ... fixme:storage:create_storagefile Storage share mode not implemented. fixme:sxs:cache_QueryAssemblyInfo 0x182ea8, 0x00000002, L"Microsoft.VC90.MFC,version=\"9.0.30729.5570\",publicKeyToken=\"1fc8b3b9a1e18e3b\",processorArchitecture=\"x86\",type=\"win32\"", 0x33f928 fixme:sxs:cache_QueryAssemblyInfo 0x182ea8, 0x00000002, L"policy.9.0.Microsoft.VC90.CRT,version=\"...
2012 Mar 29
1
DS3 in OS X Lion
...your path. Usually, you can find it in the winbind package of your distribution. fixme:advapi:LsaOpenPolicy ((null),0x33f334,0x00000001,0x33f35c) stub fixme:advapi:LsaClose (0xcafe) stub fixme:storage:create_storagefile Storage share mode not implemented. fixme:sxs:cache_QueryAssemblyInfo 0x196468, 0x00000002, L"Microsoft.VC90.ATL,version=\"9.0.30729.1\",publicKeyToken=\"1fc8b3b9a1e18e3b\",processorArchitecture=\"x86\",type=\"win32\"", 0x7af1f8 fixme:sxs:cache_QueryAssemblyInfo 0x196468, 0x00000002, L"policy.9.0.Microsoft.VC90.ATL,version=\"9.0...
2016 Jan 02
0
[PATCH] gr/gf100: provide a bit more info for various errors
...4521b..794e249 100644 --- a/drm/nouveau/nvkm/engine/gr/gf100.c +++ b/drm/nouveau/nvkm/engine/gr/gf100.c @@ -856,7 +856,41 @@ gf100_gr_units(struct nvkm_gr *base) return cfg; } +static const struct nvkm_bitfield gf100_dispatch_error[] = { + { 0x00000001, "INJECTED_BUNDLE_ERROR" }, + { 0x00000002, "CLASS_SUBCH_MISMATCH" }, + { 0x00000004, "SUBCHSW_DURING_NOTIFY" }, + {} +}; + +static const struct nvkm_bitfield gf100_m2mf_error[] = { + { 0x00000001, "PUSH_TOO_MUCH_DATA" }, + { 0x00000002, "PUSH_NOT_ENOUGH_DATA" }, + {} +}; + +static const struct nvkm_b...
2016 Mar 16
2
[PATCH mesa 5/6] nouveau: codegen: Add support for OpenCL global memory buffers
...mitterGK110::emitSTORE(const Instruction *i) > int32_t offset = SDATA(i->src(0)).offset; > > switch (i->src(0).getFile()) { > - case FILE_MEMORY_BUFFER: code[1] = 0xe0000000; code[0] = 0x00000000; break; > - case FILE_MEMORY_LOCAL: code[1] = 0x7a800000; code[0] = 0x00000002; break; > + case FILE_MEMORY_BUFFER: > + case FILE_MEMORY_GLOBAL: > + code[0] = 0x00000000; > + code[1] = 0xe0000000; > + break; > + case FILE_MEMORY_LOCAL: > + code[0] = 0x00000002; > + code[1] = 0x7a800000; > + break; > case F...
2016 Jan 02
0
[PATCH v2] gr/gf100: provide a bit more info for various errors
...4521b..1f81069 100644 --- a/drm/nouveau/nvkm/engine/gr/gf100.c +++ b/drm/nouveau/nvkm/engine/gr/gf100.c @@ -856,7 +856,41 @@ gf100_gr_units(struct nvkm_gr *base) return cfg; } +static const struct nvkm_bitfield gf100_dispatch_error[] = { + { 0x00000001, "INJECTED_BUNDLE_ERROR" }, + { 0x00000002, "CLASS_SUBCH_MISMATCH" }, + { 0x00000004, "SUBCHSW_DURING_NOTIFY" }, + {} +}; + +static const struct nvkm_bitfield gf100_m2mf_error[] = { + { 0x00000001, "PUSH_TOO_MUCH_DATA" }, + { 0x00000002, "PUSH_NOT_ENOUGH_DATA" }, + {} +}; + +static const struct nvkm_b...
2001 Nov 30
3
fixme:commdlg:GetFileName95 Flags 0x00000002 not yet implemented
Greetings! I am attempting to run Groove Mechanic ( http://www.coyotes.bc.ca ) under wine. It is able to get past the licence check and record from the sound card. But when I attempt to open a WAV file to process I get the error message: fixme:commdlg:GetFileName95 Flags 0x00000002 not yet implemented and the program hangs with focus switching between the GM window and the file browser window at about one hertz. The file open did actually appear to work once and I got to the next screen, but I have been unable to duplicate that success. Any and all help would be appreciate...
2016 Mar 16
0
[PATCH mesa 5/6] nouveau: codegen: Add support for OpenCL global memory buffers
...n these changes should be eventually done in a separate patch. I need at least halve of those cosmetic changes, because half of them is not cosmetic, e.g. : - case FILE_MEMORY_BUFFER: code[1] = 0xe0000000; code[0] = 0x00000000; break; - case FILE_MEMORY_LOCAL: code[1] = 0x7a800000; code[0] = 0x00000002; break; + case FILE_MEMORY_BUFFER: + case FILE_MEMORY_GLOBAL: + code[0] = 0x00000000; + code[1] = 0xe0000000; + break; + case FILE_MEMORY_LOCAL: + code[0] = 0x00000002; + code[1] = 0x7a800000; + break; The first bit actually changes things to have 2 cases for th...
2014 Dec 31
2
[PATCH 1/2] nv50: regenerate rnndb headers
..._LOW 0x00000268 +#define NV50_2D_COND_ADDRESS_LOW 0x00000268 #define NV50_2D_COND_MODE 0x0000026c #define NV50_2D_COND_MODE_NEVER 0x00000000 -#define NV50_2D_COND_MODE_ALWAYS 0x00000001 +#define NV50_2D_COND_MODE_ALWAYS 0x00000001 #define NV50_2D_COND_MODE_RES_NON_ZERO 0x00000002 #define NV50_2D_COND_MODE_EQUAL 0x00000003 #define NV50_2D_COND_MODE_NOT_EQUAL 0x00000004 +#define NVC0_2D_UNK0270(i0) (0x00000270 + 0x4*(i0)) +#define NVC0_2D_UNK0270__ESIZE 0x00000004 +#define NVC0_2D_UNK0270__LEN 0x00000004 + #define NV50_2D_CLIP_X 0x00000280...
2006 Mar 21
7
Multiple processes
Does anyone have any ideas why my recently updated * 1.2.5 system should spawn multiple * process at seemingly random intervals? Regards L:ee ########################################### This message has been scanned by F-Secure Anti-Virus for Microsoft Exchange. For more information, connect to http://www.f-secure.com/ -------------- next part -------------- An HTML attachment was scrubbed...
2014 Dec 31
0
[PATCH 2/2] nvc0: regenerate rnndb headers
...0x00000260 - -#define NVC0_2D_COND_ADDRESS_HIGH 0x00000264 - -#define NVC0_2D_COND_ADDRESS_LOW 0x00000268 - -#define NVC0_2D_COND_MODE 0x0000026c -#define NVC0_2D_COND_MODE_NEVER 0x00000000 -#define NVC0_2D_COND_MODE_ALWAYS 0x00000001 -#define NVC0_2D_COND_MODE_RES_NON_ZERO 0x00000002 -#define NVC0_2D_COND_MODE_EQUAL 0x00000003 -#define NVC0_2D_COND_MODE_NOT_EQUAL 0x00000004 - -#define NVC0_2D_CLIP_X 0x00000280 - -#define NVC0_2D_CLIP_Y 0x00000284 - -#define NVC0_2D_CLIP_W 0x00000288 - -#define NVC0_2D_CLIP_H 0x0000028c - -#define NVC0_2D_CLIP_ENABLE...
2012 Feb 20
2
poser 2012 ... play on linux / wine 1.3.37 ??? errors
...db98f50051edbed66\\" 00000000 fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:advapi:LsaOpenPolicy ((null),0x33f304,0x00000001,0x33f32c) stub fixme:advapi:LsaClose (0xcafe) stub fixme:storage:create_storagefile Storage share mode not implemented. fixme:sxs:cache_QueryAssemblyInfo 0x1bd7f8, 0x00000002, L"Microsoft.VC90.ATL,version=\"9.0.30729.1\",publicKeyToken=\"1fc8b3b9a1e18e3b\",processorArchitecture=\"x86\",type=\"win32\"", 0x7ae530 fixme:sxs:cache_QueryAssemblyInfo 0x1bd7f8, 0x00000002, L"policy.9.0.Microsoft.VC90.ATL,version=\"9.0...
2014 Aug 18
1
[PATCH] drm: Fix duplicate definition of NV04_PFB_BOOT_0_*
...UVEAU_FB_REGS_04_H__ +#define __NOUVEAU_FB_REGS_04_H__ + +#define NV04_PFB_BOOT_0 0x00100000 +# define NV04_PFB_BOOT_0_RAM_AMOUNT 0x00000003 +# define NV04_PFB_BOOT_0_RAM_AMOUNT_32MB 0x00000000 +# define NV04_PFB_BOOT_0_RAM_AMOUNT_4MB 0x00000001 +# define NV04_PFB_BOOT_0_RAM_AMOUNT_8MB 0x00000002 +# define NV04_PFB_BOOT_0_RAM_AMOUNT_16MB 0x00000003 +# define NV04_PFB_BOOT_0_RAM_WIDTH_128 0x00000004 +# define NV04_PFB_BOOT_0_RAM_TYPE 0x00000028 +# define NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_8MBIT 0x00000000 +# define NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_16MBIT 0x00000008 +# define NV04_PFB_BOOT...
2016 Oct 16
10
[PATCH 1/5] hwdefs: update nvc0_3d, add gm107_texture for new TIC format
...ne GM107_TIC2__SIZE 0x00000020 +#define GM107_TIC2_0 0x00000000 +#define GM107_TIC2_0_COMPONENTS_SIZES__MASK 0x0000007f +#define GM107_TIC2_0_COMPONENTS_SIZES__SHIFT 0 +#define GM107_TIC2_0_COMPONENTS_SIZES_R32_G32_B32_A32 0x00000001 +#define GM107_TIC2_0_COMPONENTS_SIZES_R32_G32_B32 0x00000002 +#define GM107_TIC2_0_COMPONENTS_SIZES_R16_G16_B16_A16 0x00000003 +#define GM107_TIC2_0_COMPONENTS_SIZES_R32_G32 0x00000004 +#define GM107_TIC2_0_COMPONENTS_SIZES_R32_B24G8 0x00000005 +#define GM107_TIC2_0_COMPONENTS_SIZES_X8B8G8R8 0x00000007 +#define GM107_TIC2_0_COMPONENTS_SIZES_A8B8G8R8...
2011 Jan 13
1
Steam Doesn't work
...00000100, 00000000): partial stub. err:ntlm:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. err:ntlm:SECUR32_initNTLMSP Usually, you can find it in the winbind package of your distribution. fixme:urlmon:CoInternetSetFeatureEnabled 5, 0x00000002, 1, stub fixme:urlmon:CoInternetSetFeatureEnabled 10, 0x00000002, 1, stub fixme:mixer:ALSA_MixerInit No master control found on HDA NVidia, disabling mixer err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered err:ole:CoGetClassObject no class object {77f10cf0-3db5-49...
2004 Mar 02
1
Immediate crash on Mac OS X 10.2.8
...x66696c65 r9: 0x00000000 r10: 0xbffff78b r11: 0x00000026 r12: 0x8fe71ac7 r13: 0x00000000 r14: 0x000021bc r15: 0x00000000 r16: 0xbffffcb4 r17: 0x00000001 r18: 0x00000000 r19: 0x000016d4 r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000 r24: 0x8fe4b3d8 r25: 0x00000002 r26: 0x00000002 r27: 0x00000000 r28: 0x00001610 r29: 0x00000000 r30: 0x8fe484d8 r31: 0x8fe09ecc
2010 Dec 25
2
Steam Crash on Startup
...process:GetLogicalProcessorInformation ((nil),0x32e48c): stub fixme:process:GetLogicalProcessorInformation (0xce0c00,0x32e48c): stub CellID: Fetching server list from CSDS. . . fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. fixme:urlmon:CoInternetSetFeatureEnabled 5, 0x00000002, 1, stub fixme:urlmon:CoInternetSetFeatureEnabled 10, 0x00000002, 1, stub fixme:dwmapi:DwmSetWindowAttribute (0x1009a, 2, 0x32d334, 4) stub fixme:dwmapi:DwmSetWindowAttribute (0x1009a, 3, 0x32d338, 4) stub fixme:dwmapi:DwmSetWindowAttribute (0x1009a, 4, 0x32d33c, 4) stub CellID: CSDS returned 178 s...