mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 22:06:50 +00:00
21 lines
268 B
C
21 lines
268 B
C
int var = 123;
|
|
int foo = 121;
|
|
|
|
int var2[2]= { 123, 456 };
|
|
|
|
#include <stdio.h>
|
|
|
|
void
|
|
print_var (void)
|
|
{
|
|
printf ("DLL sees var = %d\n", var);
|
|
}
|
|
|
|
void
|
|
print_foo (void)
|
|
{
|
|
printf ("DLL sees foo = %d\n", foo);
|
|
}
|
|
|
|
void (* func_ptr)(void) = print_foo;
|