00001
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <unistd.h>
00020 #include <stdio.h>
00021 #include <stdlib.h>
00022 #include <errno.h>
00023
00024 #include "wsddll.h"
00025
00036 int main(void)
00037 {
00038 char str[20];
00039
00040 printf ("DLL global int value : %d\n",GetDllInt());
00041 GetDllString(str);
00042 printf ("DLL global String value : %s\n",str);
00043
00044 SetDllInt(1008);
00045 SetDllString("HelloWorld");
00046
00047 printf ("DLL global int value : %d\n",GetDllInt());
00048 GetDllString(str);
00049 printf ("DLL global String value : %s\n",str);
00050
00051 printf("Press any key to exit.\n");
00052 getchar();
00053 return 0;
00054 }
00055
00056