summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/PDa/src/s_entry.c
diff options
context:
space:
mode:
authorWincent Balin <wincent@rockbox.org>2010-06-03 00:39:13 +0000
committerWincent Balin <wincent@rockbox.org>2010-06-03 00:39:13 +0000
commitc1ae4414d4ac6504992434b949b252c30daf0c48 (patch)
tree696c5781e9a00cea694117eb3ef404d37f10930e /apps/plugins/pdbox/PDa/src/s_entry.c
parent5edd8cf736232a240e2f4f47eb847e1901d18379 (diff)
downloadrockbox-c1ae4414d4ac6504992434b949b252c30daf0c48.tar.gz
rockbox-c1ae4414d4ac6504992434b949b252c30daf0c48.zip
pdbox: Source cleanup. Removed unneeded files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26497 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pdbox/PDa/src/s_entry.c')
-rw-r--r--apps/plugins/pdbox/PDa/src/s_entry.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/apps/plugins/pdbox/PDa/src/s_entry.c b/apps/plugins/pdbox/PDa/src/s_entry.c
deleted file mode 100644
index fd7b4c52fa..0000000000
--- a/apps/plugins/pdbox/PDa/src/s_entry.c
+++ /dev/null
@@ -1,52 +0,0 @@
1/* In MSW, this is all there is to pd; the rest sits in a "pdlib" dll so
2that externs can link back to functions defined in pd. */
3
4#include <stdio.h>
5
6int sys_main(int argc, char **argv);
7
8 /* WINBASEAPI PVOID WINAPI AddVectoredExceptionHandler(
9 ULONG FirstHandler,
10 PVECTORED_EXCEPTION_HANDLER VectoredHandler ); */
11
12#ifdef MSW
13#if 0
14#incldue "winbase.h"
15
16LONG NTAPI VectoredExceptionHandler(void *PEXCEPTION_POINTERS)
17{
18 fprintf(stderr, "caught exception\n");
19 return(EXCEPTION_CONTINUE_SEARCH);
20}
21
22
23int main(int argc, char **argv)
24{
25 printf("Pd entry point\n");
26 AddVectoredExceptionHandler(
27 ULONG FirstHandler,
28 PVECTORED_EXCEPTION_HANDLER VectoredHandler );
29
30
31#endif
32
33#if 1
34int main(int argc, char **argv)
35{
36 __try
37 {
38 sys_main(argc, argv);
39 }
40 __finally
41 {
42 printf("caught an exception; stopping\n");
43 }
44}
45#endif
46#else /* not MSW */
47int main(int argc, char **argv)
48{
49 return (sys_main(argc, argv));
50}
51#endif
52