diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-09-22 19:30:37 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-09-22 19:30:37 +0000 |
commit | 26d0c592408bf391eb69eb876ccc686931593269 (patch) | |
tree | bb80e8e767ceb19543ab842b418728156d6a6837 /WindozeCE | |
parent | af574a683a1bc16e8e19783427a1256a2e5dd73c (diff) | |
download | ATCD-26d0c592408bf391eb69eb876ccc686931593269.tar.gz |
ChangeLogTag:Fri Sep 22 12:27:42 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'WindozeCE')
-rw-r--r-- | WindozeCE/ACEApp.cpp | 2 | ||||
-rw-r--r-- | WindozeCE/WindozeCE.cpp | 3 | ||||
-rw-r--r-- | WindozeCE/WindozeCE.h | 2 | ||||
-rw-r--r-- | WindozeCE/WindozeCE.plg | 18 | ||||
-rw-r--r-- | WindozeCE/WindozeCEDlg.cpp | 4 |
5 files changed, 10 insertions, 19 deletions
diff --git a/WindozeCE/ACEApp.cpp b/WindozeCE/ACEApp.cpp index bf86016b137..00e176a8d7e 100644 --- a/WindozeCE/ACEApp.cpp +++ b/WindozeCE/ACEApp.cpp @@ -10,7 +10,7 @@ main (int argc, ACE_TCHAR *argv[]) { Sleep (500); for (int i = 0; i < argc; i++, Sleep (700)) - ACE_DEBUG ((LM_DEBUG, TEXT ("The %d command arg is \"%s\""), + ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("The %d command arg is \"%s\""), i, argv [i])); return 0; } diff --git a/WindozeCE/WindozeCE.cpp b/WindozeCE/WindozeCE.cpp index a08128041f4..427aeb2990f 100644 --- a/WindozeCE/WindozeCE.cpp +++ b/WindozeCE/WindozeCE.cpp @@ -6,6 +6,9 @@ #include "WindozeCE.h" #include "WindozeCEDlg.h" +// Since this is only for Windows CE, we can use the Win32 character macros +// FUZZ: disable check_for_tchar + #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE diff --git a/WindozeCE/WindozeCE.h b/WindozeCE/WindozeCE.h index ba860d6a0ee..bc674209c15 100644 --- a/WindozeCE/WindozeCE.h +++ b/WindozeCE/WindozeCE.h @@ -16,6 +16,8 @@ #include "resource.h" // main symbols #include "ace/OS.h" +// FUZZ: disable check_for_tchar + ///////////////////////////////////////////////////////////////////////////// // CWindozeCEApp: // See WindozeCE.cpp for the implementation of this class diff --git a/WindozeCE/WindozeCE.plg b/WindozeCE/WindozeCE.plg deleted file mode 100644 index 5eec2c4acbd..00000000000 --- a/WindozeCE/WindozeCE.plg +++ /dev/null @@ -1,18 +0,0 @@ ---------------------Configuration: WindozeCE - Win32 (WCE x86em) Debug--------------------
-Begining build with project "C:\Nanbor\WinCE\WindozeCE\WindozeCE.dsp", at root.
-Active configuration is Win32 (WCE x86em) Application (based on Win32 (WCE x86em) Application)
-
-Project's tools are:
- "32-bit C/C++ Compiler for 80x86em" with flags "/nologo /MTd /W3 /Gm /Zi /Od /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "_DEBUG" /D "x86" /D "i486" /D "_x86_" /D "_AFXDLL" /Fp"x86emDbg/WindozeCE.pch" /Yu"stdafx.h" /Fo"x86emDbg/" /Fd"x86emDbg/" /c "
- "Win32 Resource Compiler" with flags "/l 0x409 /fo"x86emDbg/WindozeCE.res" /d UNDER_CE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "_DEBUG" /d "x86" /d "i486" /d "_x86_" /d "_AFXDLL" "
- "OLE Type Library Maker" with flags "/nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 "
- "Browser Database Maker" with flags "/nologo /o"x86emDbg/WindozeCE.bsc" "
- "COFF Linker for 80x86em" with flags "/nologo /entry:"wWinMainCRTStartup" /subsystem:windows /incremental:yes /pdb:"x86emDbg/WindozeCE.pdb" /debug /machine:I386 /out:"x86emDbg/WindozeCE.exe" /windowsce:emulation "
- "Empfile Utility" with flags "-COPY "
- "Custom Build" with flags ""
- "<Component 0xa>" with flags ""
-
-
-
-
-WindozeCE.exe - 0 error(s), 0 warning(s)
diff --git a/WindozeCE/WindozeCEDlg.cpp b/WindozeCE/WindozeCEDlg.cpp index c2342f329f0..24a26b1e427 100644 --- a/WindozeCE/WindozeCEDlg.cpp +++ b/WindozeCE/WindozeCEDlg.cpp @@ -16,6 +16,10 @@ static char THIS_FILE[] = __FILE__; static CWnd *host_window_ = 0; +// Since this is only for Windows CE, we can use the Win32 character macros +// FUZZ: disable check_for_tchar + + UINT worker (void * arg) { ACE_ARGV cmd_line ((ACE_TCHAR *) arg); |