00001 /*****************************************************************************\ 00002 * * 00003 * Name : dcomperm wrapper * 00004 * Author : Chris Koeritz * 00005 * * 00006 ******************************************************************************* 00007 * Copyright (c) 2000-$now By Author. This program is free software; you can * 00008 * redistribute it and/or modify it under the terms of the GNU General Public * 00009 * License as published by the Free Software Foundation; either version 2 of * 00010 * the License or (at your option) any later version. This is online at: * 00011 * http://www.fsf.org/copyleft/gpl.html * 00012 * Please send any updates to: fred@gruntose.com * 00013 \*****************************************************************************/ 00014 00015 extern int dcomperm_main(int argc, char **argv); 00016 00017 int main(int argc, char *argv[]) 00018 { 00019 int to_return = 0; 00020 #ifdef __WIN32__ 00021 to_return = dcomperm_main(argc, argv); 00022 #else 00023 if (argc) argv++; // junk code to silence compiler. 00024 #endif 00025 return to_return; 00026 } 00027
1.5.1