summaryrefslogtreecommitdiff
path: root/apps/FaCE/FaCE.cpp
diff options
context:
space:
mode:
authorspark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-01 04:48:18 +0000
committerspark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-01 04:48:18 +0000
commit2b3b21f1ff0d3d43c47f37f6a8264e387bb804ce (patch)
tree48ece021c95faf4e540072eef5c75aaafe67f6ee /apps/FaCE/FaCE.cpp
parentcb97ba5ed917de8a0b0fbc444b9dc8765600d682 (diff)
downloadATCD-2b3b21f1ff0d3d43c47f37f6a8264e387bb804ce.tar.gz
ChangeLogTag: Sun Mar 31 22:44:00 2002 Si Mong Park <spark@ociweb.com>
Diffstat (limited to 'apps/FaCE/FaCE.cpp')
-rw-r--r--apps/FaCE/FaCE.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/apps/FaCE/FaCE.cpp b/apps/FaCE/FaCE.cpp
index 87cadd9a207..202c73a98d3 100644
--- a/apps/FaCE/FaCE.cpp
+++ b/apps/FaCE/FaCE.cpp
@@ -1,5 +1,4 @@
// $Id$
-// FUZZ: disable check_for_tchar
#include "FaCE.h"
@@ -153,7 +152,7 @@ ACE_TCHAR g_SaveFileName[MAX_LOADSTRING]; // Name of the output file
static SHACTIVATEINFO s_sai;
// Forward declarations of functions included in this code module:
-ATOM MyRegisterClass (HINSTANCE, LPTSTR);
+ATOM MyRegisterClass (HINSTANCE, ACE_TCHAR*);
BOOL InitInstance (HINSTANCE, int);
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK About (HWND, UINT, WPARAM, LPARAM);
@@ -210,7 +209,7 @@ void LoadParameterHistory()
// It is important to call this function so that the application
// will get 'well formed' small icons associated with it.
//
-ATOM MyRegisterClass(HINSTANCE hInstance, LPTSTR szWindowClass)
+ATOM MyRegisterClass(HINSTANCE hInstance, ACE_TCHAR* szWindowClass)
{
WNDCLASS wc;
@@ -317,7 +316,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
switch (wmId)
{
case IDM_HELP_ABOUT:
- DialogBox(g_hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);
+ DialogBox(g_hInst, (const ACE_TCHAR*)IDD_ABOUTBOX, hWnd, (DLGPROC)About);
break;
case IDOK:
@@ -352,12 +351,12 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
case ID_TOOLS_SAVETOFILE:
// create a dialog box to get the file name
- DialogBox(g_hInst, (LPCTSTR)IDD_OUTFILE, hWnd, (DLGPROC)SaveFileName);
+ DialogBox(g_hInst, (const ACE_TCHAR*)IDD_OUTFILE, hWnd, (DLGPROC)SaveFileName);
break;
case ID_SETTING_COMMANDLINE:
// create a dialog box to get the command line
- DialogBox(g_hInst, (LPCTSTR)IDD_CMDLINE, hWnd, (DLGPROC)CommandLine);
+ DialogBox(g_hInst, (const ACE_TCHAR*)IDD_CMDLINE, hWnd, (DLGPROC)CommandLine);
break;
default:
@@ -557,7 +556,7 @@ LRESULT CALLBACK SaveFileName(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa
if (tempFile != NULL) // if file exists
{
fclose(tempFile); // close temp handler
- int choice = DialogBox(g_hInst, (LPCTSTR)IDD_FILEEXIST, hDlg, (DLGPROC)FileExist);
+ int choice = DialogBox(g_hInst, (const ACE_TCHAR*)IDD_FILEEXIST, hDlg, (DLGPROC)FileExist);
switch (choice)
{
case IDOVERWRITE: // overwrite existing file
@@ -581,7 +580,7 @@ LRESULT CALLBACK SaveFileName(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa
if (tempFile == NULL)
{
- DialogBox(g_hInst, (LPCTSTR)IDD_ERRFILE, hDlg, (DLGPROC)FileError);
+ DialogBox(g_hInst, (const ACE_TCHAR*)IDD_ERRFILE, hDlg, (DLGPROC)FileError);
}
else
{