diff options
author | Eric Anholt <[email protected]> | 2010-05-21 09:32:38 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-05-21 12:20:39 -0700 |
commit | 68fc4b415e322f6744299e39864fbc377c6eff74 (patch) | |
tree | 4bafffd8b0105174f3c5c0ae327a005be9145990 /progs/xdemos/ipc.h | |
parent | e4f4489e3fc0b36d72821b55794fb843b2b7fa5f (diff) |
Remove demos that have moved to git+ssh://git.freedesktop.org/git/mesa/demos.
The remaining programs are ones I've had difficulty finding a build
environment for to make the build system or are unit tests that should
probably live next to their code instead. Hopefully people can bring
over the build for remaining pieces they care about.
Diffstat (limited to 'progs/xdemos/ipc.h')
-rw-r--r-- | progs/xdemos/ipc.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/progs/xdemos/ipc.h b/progs/xdemos/ipc.h deleted file mode 100644 index 3f434457c6f..00000000000 --- a/progs/xdemos/ipc.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef IPC_H -#define IPC_H - - -extern int MyHostName(char *nameOut, int maxNameLength); -extern int CreatePort(int *port); -extern int AcceptConnection(int socket); -extern int Connect(const char *hostname, int port); -extern void CloseSocket(int socket); -extern int SendData(int socket, const void *data, int bytes); -extern int ReceiveData(int socket, void *data, int bytes); -extern int SendString(int socket, const char *str); -extern int ReceiveString(int socket, char *str, int maxLen); - - -#endif /* IPC_H */ |