Missing .h files
Error message when attempting to gcc a .c file:
"In file included from dmfe.c:35:
/usr/i386-glibc20-linux/include/linux/config.h:4:linux/autoconf.h:no such
file or directory"
and
"In file included from dmfe.c:40:
/usr/i386-glibc20-linux/include/linux/module.h:192:linux/version.h:no such
file or directory"
How can I get the required .h files to be available?
Thank you for your help
----- Original Message -----
From: "Martin v. Loewis" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Sunday, December 19, 1999 6:49 PM
Subject: Re: dynamic libraries
> > Is it possible to "export" a C++ class from a library and if how ?
>
> You don't need to export the class from the library, just put it
> there.
>
> > And another thing is that I'm creating a library which
> > uses functions that I wouldn't like to export. These functions are
> > members of C++ classes so it isn't possible to make them 'static'.
> > How can I hide them ?
>
> You can make them private.
>
> Regards,
> Martin
>