Re: win32Lib and procedure free_console()
- Posted by ghaberek (admin) Aug 23, 2012
- 1307 views
sergelli said...
A code with win32Lib and procedure free_console() generate error message when run with Windows 7
C:\1USRE\DoisExe\exe1.exw:22 <0074>:: Errors resolving the following references: 'free_console' (exe1.exw:22) has been declared more than once. in c:/Euphoria/include/dll.e in c:/Euphoria/include/std/console.e free_console() ^
What can I do to resolve this?
The include file std/console.e uses the console namespace. So you can correct this by calling free_console() like this:
include std/console.e -- namespace console console:free_console()
-Greg