• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Back to the whole linux thing...

  • Thread starter Thread starter ikazuchi at cryhavok.org
  • Start date Start date
I

ikazuchi at cryhavok.org

Guest
I understand the diffuculties in porting a program from one OS to
another. I am extremely interested in using CV, but am without a
Windows box.

Using CV 1.2 and Codeweaver's crossover office version of wine, and
transgaming's winex I recieve a 'Failed to access pre-defined
sources.'error, mentioned by another user earlier.

Unfortuneately, that is the only error I recieve. Is there anyway to
acquire other debug information to pass along to the devs to possibly
work through this issue?

-D-


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/WuQolB/TM
---------------------------------------------------------------------~->
 
OK. From looking at the code, here is a list of the things that could be
failing that would generate the error specified....

1. Loading a bitmap resource by id from the "resource.dll" file. This is a
resource only DLL that is loaded via an explicit LoadLibrary API call
instead of using an implicit library.
2. Creating a static control window (HIGHLY unlikely this would cause any
problems).
3. Sizing and position the containing form window (again, highly unlikely
to be the problem).
4. Setting the Z order of the splash window to force it on top of all other
windows via SetWindowPos (again, unlikely but possible).
5. Capturing mouse activity to the splash window via SetCapture.
6. Creating a timer via SetTimer. All timers are processed within a
separately created thread to ensure good responsiveness. This thread
creates a static window that then processes messages, waiting for the timer
message to be triggered. The thread itself is already created and running
well prior to the code that is failing, so the thread should not be the
issue, although the timer itself could be.

That's the complete list of things that are being done within the code that
is failing. Hopefully, this will yield some useful bits for the developers
to look into. :-)

Thanks, Rob

At 06:51 PM 8/18/2003 +0000, you wrote:
>I understand the diffuculties in porting a program from one OS to
>another. I am extremely interested in using CV, but am without a
>Windows box.
>
>Using CV 1.2 and Codeweaver's crossover office version of wine, and
>transgaming's winex I recieve a 'Failed to access pre-defined
>sources.'error, mentioned by another user earlier.
>
>Unfortuneately, that is the only error I recieve. Is there anyway to
>acquire other debug information to pass along to the devs to possibly
>work through this issue?
>
>-D-


---------------------------------------------------------------------------
Rob Bowes (rob@wolflair.com) (559) 658-6995
Lone Wolf Development www.wolflair.com


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/WuQolB/TM
---------------------------------------------------------------------~->
 
Back
Top