I am trying to install Blue Chip Trader and I get the followiing and then a window pops up that says that there was an error generating the wizard then it exits. Also one of the other files says that my short date is in the wrong format. That would be somthing to do with the LANG variable. right? Phillip [Phillip@frodo Phillip]$ wine /mnt/cdrom/mdac_26.exe fixme:win32:PE_CreateModule Security directory ignored fixme:process:CreateProcessA (E:\IXP000.TMP\dasetup.exe,...): NORMAL_PRIORITY_CLASS ignored fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub fixme:setupapi:SetupScanFileQueueA stub [Phillip@frodo Phillip]$
Phillip Shelton wrote:> I am trying to install Blue Chip Trader and I get the followiing and > then a window pops up that says that there was an error generating the > wizard then it exits. > > Also one of the other files says that my short date is in the wrong > format. That would be somthing to do with the LANG variable. right? > > Phillip > > > [Phillip@frodo Phillip]$ wine /mnt/cdrom/mdac_26.exe > fixme:win32:PE_CreateModule Security directory ignored > fixme:process:CreateProcessA (E:\IXP000.TMP\dasetup.exe,...): > NORMAL_PRIORITY_CLASS ignored > fixme:setupapi:SetupScanFileQueueA stubAssuming that the stub is the problem, and looking at what the function does it seems likely, then about the only way to fix this is for someone to write the code to implement that function. A stub basically means that there is a placeholder function in Wine which does nothing except print that fixme. Depending on what the value of the flag is, that may or may not be difficult.
Thanks. Any pointers to where information about what that function should do is? Duane Clark wrote:> Phillip Shelton wrote: > >> I am trying to install Blue Chip Trader and I get the followiing and >> then a window pops up that says that there was an error generating >> the wizard then it exits. >> >> Also one of the other files says that my short date is in the wrong >> format. That would be somthing to do with the LANG variable. right? >> >> Phillip >> >> >> [Phillip@frodo Phillip]$ wine /mnt/cdrom/mdac_26.exe >> fixme:win32:PE_CreateModule Security directory ignored >> fixme:process:CreateProcessA (E:\IXP000.TMP\dasetup.exe,...): >> NORMAL_PRIORITY_CLASS ignored >> fixme:setupapi:SetupScanFileQueueA stub > > > > Assuming that the stub is the problem, and looking at what the > function does it seems likely, then about the only way to fix this is > for someone to write the code to implement that function. A stub > basically means that there is a placeholder function in Wine which > does nothing except print that fixme. Depending on what the value of > the flag is, that may or may not be difficult. > > > > _______________________________________________ > wine-users mailing list > wine-users@winehq.com > http://www.winehq.com/mailman/listinfo/wine-users >
Phillip Shelton wrote:> Thanks. Any pointers to where information about what that function > should do is? >Sure. Go to the source :-) http://msdn.microsoft.com/library/default.asp Enter SetupScanFileQueue in the search box. Select the first search result. You will see that some of the flags appear fairly simple to implement, and some look rather complicated.
Duane Clark wrote:> Phillip Shelton wrote: > >>Thanks. Any pointers to where information about what that function >>should do is? >> > > Sure. Go to the source :-) > > http://msdn.microsoft.com/library/default.asp > > Enter SetupScanFileQueue in the search box. Select the first search > result. You will see that some of the flags appear fairly simple to > implement, and some look rather complicated.And while I am at it, to find out where this is in Wine, go to http://source.winehq.org/ident And this time enter SetupScanFileQueueA. Notice that the "A" is only used in looking up the Wine version. Wine has "A" and "W" versions of many functions, corresponding to ASCII and Unicode variations.