diff options
author | Simon Howard | 2009-09-10 20:28:59 +0000 |
---|---|---|
committer | Simon Howard | 2009-09-10 20:28:59 +0000 |
commit | 100b658b470ecaf9ff5e2c3407bfff224e91fb01 (patch) | |
tree | b04f71ab6203c38f7a5f9039c8ad0b69ac280848 /wince | |
parent | ba1accec2394c6ee70c5c79a42827099ef20e638 (diff) | |
parent | be3bba2a1cf9551778683e25f61bffc7c187f93c (diff) | |
download | chocolate-doom-100b658b470ecaf9ff5e2c3407bfff224e91fb01.tar.gz chocolate-doom-100b658b470ecaf9ff5e2c3407bfff224e91fb01.tar.bz2 chocolate-doom-100b658b470ecaf9ff5e2c3407bfff224e91fb01.zip |
Merge from trunk.
Subversion-branch: /branches/opl-branch
Subversion-revision: 1662
Diffstat (limited to 'wince')
-rw-r--r-- | wince/Makefile.am | 2 | ||||
-rw-r--r-- | wince/dummy.c | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/wince/Makefile.am b/wince/Makefile.am index 7d694377..476b9a67 100644 --- a/wince/Makefile.am +++ b/wince/Makefile.am @@ -10,7 +10,7 @@ libc_wince_a_SOURCES = \ else -libc_wince_a_SOURCES = +libc_wince_a_SOURCES = dummy.c endif diff --git a/wince/dummy.c b/wince/dummy.c new file mode 100644 index 00000000..68af0caa --- /dev/null +++ b/wince/dummy.c @@ -0,0 +1,8 @@ + +// Dummy source file so that the Windows CE workaround library is +// not empty. Some platforms don't like empty libraries. + +void DummyWindowsCEFunction(void) +{ +} + |