diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-02-12 01:17:12 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-02-12 01:17:12 +0000 |
commit | 0052027afc21a221b69f65e3a6b79ca568c2f3bf (patch) | |
tree | 62f33d308ca1e13b5df71a0211f703928a093264 | |
parent | 861e1cbffcfb513084fc3f0a0e27bc6508b375d9 (diff) |
unicode fixes
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@396 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | db3x_autobackups/finalcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db3x_autobackups/finalcommand.c b/db3x_autobackups/finalcommand.c index 2e8ecbb..f1d76a3 100644 --- a/db3x_autobackups/finalcommand.c +++ b/db3x_autobackups/finalcommand.c @@ -54,5 +54,5 @@ void FinalCommandSetup(void) { void FinalCommandExecute(void) {
if(command_valid)
- ShellExecute(0, 0, exit_command, command_params_valid ? exit_command_params : 0, command_dir_valid ? exit_command_dir : 0, SW_SHOWNORMAL);
+ ShellExecuteA(0, 0, exit_command, command_params_valid ? exit_command_params : 0, command_dir_valid ? exit_command_dir : 0, SW_SHOWNORMAL);
}
|