diff options
author | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-23 23:26:23 +0000 |
---|---|---|
committer | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-23 23:26:23 +0000 |
commit | 6b511deba1f64745195326c4c8e5ed36b9fa2158 (patch) | |
tree | 0973ff4169268f034705b5e214c0dc23f9fa07ab /examples/DLL | |
parent | 84dbb9ebbe3524dcbb749c785f628b13ae897961 (diff) | |
download | ATCD-6b511deba1f64745195326c4c8e5ed36b9fa2158.tar.gz |
*** empty log message ***
Diffstat (limited to 'examples/DLL')
-rw-r--r-- | examples/DLL/test_dll.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/DLL/test_dll.cpp b/examples/DLL/test_dll.cpp index fccd8bdb6f3..cbae44b4e0a 100644 --- a/examples/DLL/test_dll.cpp +++ b/examples/DLL/test_dll.cpp @@ -12,8 +12,11 @@ ACE_RCSID(DLL, test_dll, "$Id$") typedef Magazine* (*Magazine_Creator) (void); int -main (void) +main (int argc, char *argv[]) { + ACE_UNUSED_ARG (argc); + ACE_UNUSED_ARG (argv); + ACE_DLL dll; int retval = dll.open ("./" ACE_DLL_PREFIX "Today" ACE_DLL_SUFFIX); |