|
From: Max P. <li...@st...> - 2002-09-14 17:30:08
|
I figured it out. Since none of the lib/Apache/*.cs files mention the
Browser class, I've added this to Server.cs:
class Browser
{
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public external static void Write(string name);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public external static void WriteLine(string name);
}
Since Apache.Browser::Write is defined in mod_haydn.c, I assumed this will
work.
Btw, I'm using the latest, mod_haydn-1.3-0.0.5.
Let's see if this will work..
Max
On Sat, 14 Sep 2002, Max Pakhutkin wrote:
> I must be missing something, but I can't seem to compile the examples.
> Whether I'm using mcs or make with the provided Makefile, I get
> Browser.Write was not found ... and Request type was not found.
>
> I'm on Debian, downloaded all mono-0.15 debs from debian planet.
>
> Please help me figure this out. As you ca tell, I'm new to c#.
>
> Thanks
> Max
>
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Haydn-list mailing list
> Hay...@li...
> https://lists.sourceforge.net/lists/listinfo/haydn-list
>
|