front_idill/extern/fajran-npTuioClient/TestClient/Test.cpp
changeset 30 45c889eae324
parent 29 fcf435874395
child 31 2c7fc855eba8
--- a/front_idill/extern/fajran-npTuioClient/TestClient/Test.cpp	Thu Apr 19 11:53:06 2012 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-/*
-    Modified by alexandre.bastien@iri.centrepompidou.fr to debug this project.
-*/
-
-#include <cstdlib>
-#include <cstdio>
-#include <iostream>
-#include <Windows.h>
-
-using namespace std;
-
-int main(int argc, char ** argv)
-{
-    /* get handle to dll */
-   HINSTANCE hGetProcIDDLL = LoadLibrary((LPCWSTR)"npTuioClient.dll");
-
-   /* get pointer to the function in the dll*/
-   FARPROC lpfnGetProcessID = GetProcAddress(HMODULE (hGetProcIDDLL),"tuio_start");
-   FARPROC lpfnGetProcessID2 = GetProcAddress(HMODULE (hGetProcIDDLL),"tuio_stop");
-
-   /*
-      Define the Function in the DLL for reuse. This is just prototyping the dll's function.
-      A mock of it. Use "stdcall" for maximum compatibility.
-   */
-   typedef int (__stdcall * pICFUNC)(void);
-
-   pICFUNC t;
-   t = pICFUNC(lpfnGetProcessID);
-
-   /* The actual call to the function contained in the dll */
-   t();
-
-   /* Release the Dll */
-   FreeLibrary(hGetProcIDDLL);
-
-    system("PAUSE");
-    return 0;
-}
\ No newline at end of file