Roberto C. Sanchez wrote:
>Dirk wrote:
>
>
>>Where do I find an example proxy code in C, with less than 100 lines and
>>no dependencies?
>>
>>
Here's an int proxy:
// .c file
int f;
void setTheInt(int foo) {
f = foo;
}
int getTheInt() {
return f;
}
// .h file
void setTheInt(int foo);
int getTheInt();