budi4747 / wintee

Automatically exported from code.google.com/p/wintee
0 stars 0 forks source link

Does not compile out-of-the-box under Visual C++ #14

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. cl /O2 /GF /Fetee.exe wintee.c /link 
2. Observe errors

What is the expected output? What do you see instead?
Expected output is to create the executable.
There are two errors:

1. #include <rb\queue.h> does not work, because there is no "rb" directory. 
Should be #include "queue.h".

2. disable() is not defined (unresolved external). Perhaps it is defined in 
some obscure library, but it was not a very important feature, so I just 
removed it.

What version of the product are you using? On what operating system?
Windows 7, Visual Studio 2012. Got latest code from SVN as of November 16, 2013.

Please provide any additional information below.

Original issue reported on code.google.com by ikri...@gmail.com on 16 Nov 2013 at 10:52