Tagged Questions

10
votes
4answers
3k views

A Haskell function of type: IO String-> String

I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this: index :: String -> [(String, [Integer])] index a = [...] Now I want to give this function a ...
2
votes
2answers
474 views

Haskell - readFile catch exception

I am trying to read file in Haskell with exception catching but cant get working. The code looks like: module Main where import System.Environment import System.IO import System.Exit ...
1
vote
3answers
616 views

According to MSDN ReadFile() Win32 function may incorrectly report read operation completion. When?

The MSDN states in its description of ReadFile() function: If hFile is opened with FILE_FLAG_OVERLAPPED, the lpOverlapped parameter must point to a valid and unique OVERLAPPED structure, otherwise ...
0
votes
0answers
67 views

ReadFile() indicating EOF when file system says otherwise

I've an application running on Windows CE 6.0 that we'll call "foo" that is logging its error and status messages to "foo.log". I've a second application which we'll call "bar" that should open ...
0
votes
1answer
172 views

Read Anonymous Pipes More than Once while Keeping Connection Open (WinAPI)

So I keep bouncing between named and anonymous pipes and here is my issue. I tried named pipes and they just didn't seem to work properly for what I wanted, so I'm back to anonymous pipes. However, ...