3 |
4 | #include "LOG.h"
5 |
6 | #define LOG_STYLES_HELLO ( LOG_STYLE_DATETIMEMS | LOG_STYLE_LOGLEVEL | LOG_STYLE_PID | LOG_STYLE_TID | LOG_STYLE_SOURCE | LOG_STYLE_FORMAT | LOG_STYLE_NEWLINE )
7 |
8 | int test_hello()
9 | {
10 | LOG *g = NULL ;
11 |
12 | char buffer[ 64 + 1 ] = "" ;
13 | long buflen = sizeof(buffer) - 1 ;
14 |
15 | g = create_log_handle() ;
16 | if( g == NULL )
17 | {
18 | printf( "create log handle failed , errno[%d]\n" , errno );
19 | return -1;
20 | }
21 |
22 | printf( "create log handle ok\n" );
23 |
24 | set_log_output( g , LOG_OUTPUT_FILE , "$HOME$/log/test_hello.log" , LOG_NO_OUTPUTFUNC );
25 | set_log_level( g , LOG_LEVEL_INFO );
26 | set_log_styles( g , LOG_STYLES_HELLO , LOG_NO_STYLEFUNC );
27 |
28 | debug_log( g , __FILE__ , __LINE__ , "hello DEBUG" );
29 | info_log( g , __FILE__ , __LINE__ , "hello INFO" );
30 | warn_log( g , __FILE__ , __LINE__ , "hello WARN" );
31 | error_log( g , __FILE__ , __LINE__ , "hello ERROR" );
32 | fatal_log( g , __FILE__ , __LINE__ , "hello FATAL" );
33 |
34 | debug_hex_log( g , __FILE__ , __LINE__ , buffer , buflen , "buflen[%ld]" , buflen );
35 | info_hex_log( g , __FILE__ , __LINE__ , buffer , buflen , "buflen[%ld]" , buflen );
36 | warn_hex_log( g , __FILE__ , __LINE__ , buffer , buflen , "buflen[%ld]" , buflen );
37 | error_hex_log( g , __FILE__ , __LINE__ , buffer , buflen , "buflen[%ld]" , buflen );
38 | fatal_hex_log( g , __FILE__ , __LINE__ , buffer , buflen , "buflen[%ld]" , buflen );
39 |
40 | destroy_log_handle( g );
41 | printf( "destroy log handle\n" );
42 |
43 | return 0;
44 | }
45 |
46 | int main()
47 | {
48 | return -test_hello();
49 | }
50 |
--------------------------------------------------------------------------------
/test/test_logc.c:
--------------------------------------------------------------------------------
1 | #include "../src/LOGC.h"
2 |
3 | int test_logc()
4 | {
5 | char buf[ 4096*10 + 1 + 1 ] ;
6 | long buflen ;
7 | int i ;
8 |
9 | SetLogcFile( "%s/log/test_logc.log" , getenv("HOME") );
10 | SetLogcLevel( LOGCLEVEL_INFO );
11 |
12 | WriteDebugLogc( __FILE__ , __LINE__ , "call DebugLog" );
13 | WriteInfoLogc( __FILE__ , __LINE__ , "call InfoLog" );
14 | WriteWarnLogc( __FILE__ , __LINE__ , "call WarnLog" );
15 | WriteErrorLogc( __FILE__ , __LINE__ , "call ErrorLog" );
16 | WriteFatalLogc( __FILE__ , __LINE__ , "call FatalLog" );
17 |
18 | memset( buf , 0x00 , sizeof(buf) );
19 | WriteDebugHexLogc( __FILE__ , __LINE__ , buf , 64 , "call DebugHexLog" );
20 | WriteInfoHexLogc( __FILE__ , __LINE__ , buf , 64 , "call InfoHexLog" );
21 | WriteWarnHexLogc( __FILE__ , __LINE__ , buf , 64 , "call WarnHexLog" );
22 | WriteErrorHexLogc( __FILE__ , __LINE__ , buf , 64 , "call ErrorHexLog" );
23 | WriteFatalHexLogc( __FILE__ , __LINE__ , buf , 64 , "call FatalHexLog" );
24 |
25 | SetLogcLevel( LOGCLEVEL_DEBUG );
26 |
27 | buflen = 4096*10 ;
28 | WriteDebugHexLogc( __FILE__ , __LINE__ , buf , buflen , "call DebugHexLog" );
29 | WriteInfoLogc( __FILE__ , __LINE__ , "call InfoHexLog ok" );
30 |
31 | for( i = 0 ; i <= 255 ; i++ )
32 | {
33 | buf[i] = i ;
34 | }
35 |
36 | WriteDebugHexLogc( __FILE__ , __LINE__ , buf , 256 , "call DebugHexLog" );
37 | WriteInfoLogc( __FILE__ , __LINE__ , "call InfoHexLog ok" );
38 |
39 | return 0;
40 | }
41 |
42 | int main()
43 | {
44 | return -test_logc();
45 | }
46 |
--------------------------------------------------------------------------------
/test/test_logs.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_logs.c
--------------------------------------------------------------------------------
/test/test_memoryleak.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_memoryleak.c
--------------------------------------------------------------------------------
/test/test_outputfunc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_outputfunc.c
--------------------------------------------------------------------------------
/test/test_press.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_press.c
--------------------------------------------------------------------------------
/test/test_press_mpt.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_press_mpt.c
--------------------------------------------------------------------------------
/test/test_press_mpt_tls.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_press_mpt_tls.c
--------------------------------------------------------------------------------
/test/test_press_noclose.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_press_noclose.c
--------------------------------------------------------------------------------
/test/test_stylesfunc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/test_stylesfunc.c
--------------------------------------------------------------------------------
/test/vc2015-test_changetest/.vs/test_changetest/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/vc2015-test_changetest/.vs/test_changetest/v14/.suo
--------------------------------------------------------------------------------
/test/vc2015-test_changetest/Debug/test_changetest.Build.CppClean.log:
--------------------------------------------------------------------------------
1 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\vc140.pdb
2 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\vc140.idb
3 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.obj
4 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.ilk
5 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.exe
6 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.pdb
7 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.tlog\cl.command.1.tlog
8 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.tlog\cl.read.1.tlog
9 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.tlog\cl.write.1.tlog
10 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.tlog\link.command.1.tlog
11 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.tlog\link.read.1.tlog
12 | d:\work\gitfiles\oschina.net\ilog3\test\test_changetest\debug\test_changetest.tlog\link.write.1.tlog
13 |
--------------------------------------------------------------------------------
/test/vc2015-test_changetest/Debug/test_changetest.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/vc2015-test_changetest/test_changetest.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 14
4 | VisualStudioVersion = 14.0.25420.1
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_changetest", "test_changetest.vcxproj", "{569A40FF-7DA1-4702-AA61-3B4E57DC7C50}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|x64 = Debug|x64
11 | Debug|x86 = Debug|x86
12 | Release|x64 = Release|x64
13 | Release|x86 = Release|x86
14 | EndGlobalSection
15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Debug|x64.ActiveCfg = Debug|x64
17 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Debug|x64.Build.0 = Debug|x64
18 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Debug|x86.ActiveCfg = Debug|Win32
19 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Debug|x86.Build.0 = Debug|Win32
20 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Release|x64.ActiveCfg = Release|x64
21 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Release|x64.Build.0 = Release|x64
22 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Release|x86.ActiveCfg = Release|Win32
23 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}.Release|x86.Build.0 = Release|Win32
24 | EndGlobalSection
25 | GlobalSection(SolutionProperties) = preSolution
26 | HideSolutionNode = FALSE
27 | EndGlobalSection
28 | EndGlobal
29 |
--------------------------------------------------------------------------------
/test/vc2015-test_changetest/test_changetest.vcxproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | Win32
7 |
8 |
9 | Release
10 | Win32
11 |
12 |
13 | Debug
14 | x64
15 |
16 |
17 | Release
18 | x64
19 |
20 |
21 |
22 | {569A40FF-7DA1-4702-AA61-3B4E57DC7C50}
23 | Win32Proj
24 | test_changetest
25 | 8.1
26 |
27 |
28 |
29 | Application
30 | true
31 | v140
32 | Unicode
33 |
34 |
35 | Application
36 | false
37 | v140
38 | true
39 | Unicode
40 |
41 |
42 | Application
43 | true
44 | v140
45 | Unicode
46 |
47 |
48 | Application
49 | false
50 | v140
51 | true
52 | Unicode
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | true
74 |
75 |
76 | true
77 |
78 |
79 | false
80 |
81 |
82 | false
83 |
84 |
85 |
86 |
87 |
88 | Level3
89 | Disabled
90 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
91 | true
92 | C:\iLOG3\include;%(AdditionalIncludeDirectories)
93 |
94 |
95 | Console
96 | true
97 | C:\iLOG3\lib;%(AdditionalLibraryDirectories)
98 | iLOG3.lib;%(AdditionalDependencies)
99 |
100 |
101 |
102 |
103 |
104 |
105 | Level3
106 | Disabled
107 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions)
108 | true
109 |
110 |
111 | Console
112 | true
113 |
114 |
115 |
116 |
117 | Level3
118 |
119 |
120 | MaxSpeed
121 | true
122 | true
123 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
124 | true
125 |
126 |
127 | Console
128 | true
129 | true
130 | true
131 |
132 |
133 |
134 |
135 | Level3
136 |
137 |
138 | MaxSpeed
139 | true
140 | true
141 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
142 | true
143 |
144 |
145 | Console
146 | true
147 | true
148 | true
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
--------------------------------------------------------------------------------
/test/vc2015-test_changetest/test_changetest.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
7 |
8 |
9 | {93995380-89BD-4b04-88EB-625FBE52EBFB}
10 | h;hh;hpp;hxx;hm;inl;inc;xsd
11 |
12 |
13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
15 |
16 |
17 |
18 |
19 | 源文件
20 |
21 |
22 |
--------------------------------------------------------------------------------
/test/vc6/test_afterrotatefile/test_afterrotatefile.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_afterrotatefile" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_afterrotatefile - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_afterrotatefile.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_afterrotatefile.mak" CFG="test_afterrotatefile - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_afterrotatefile - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_afterrotatefile - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_afterrotatefile - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_afterrotatefile - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_afterrotatefile - Win32 Release"
83 | # Name "test_afterrotatefile - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_afterrotatefile.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_afterrotatefile/test_afterrotatefile.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_afterrotatefile - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP92.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_afterrotatefile.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.3\test\test_afterrotatefile.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP92.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP93.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_afterrotatefile.pdb" /debug /machine:I386 /out:"Debug/test_afterrotatefile.exe" /pdbtype:sept
18 | ".\Debug\test_afterrotatefile.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP93.tmp"
21 | Output Window
22 | Compiling...
23 | test_afterrotatefile.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_afterrotatefile.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_demo/test_demo.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_demo" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_demo - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_demo.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_demo.mak" CFG="test_demo - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_demo - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_demo - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_demo - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_demo - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_demo - Win32 Release"
83 | # Name "test_demo - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_demo.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_filterlogfunc/test_filterlogfunc.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_filterlogfunc" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_filterlogfunc - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_filterlogfunc.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_filterlogfunc.mak" CFG="test_filterlogfunc - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_filterlogfunc - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_filterlogfunc - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_filterlogfunc - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_filterlogfunc - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_filterlogfunc - Win32 Release"
83 | # Name "test_filterlogfunc - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_filterlogfunc.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_filterlogfunc/test_filterlogfunc.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_filterlogfunc - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP88.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_filterlogfunc.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.3\test\test_filterlogfunc.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP88.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP89.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_filterlogfunc.pdb" /debug /machine:I386 /out:"Debug/test_filterlogfunc.exe" /pdbtype:sept
18 | ".\Debug\test_filterlogfunc.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP89.tmp"
21 | Output Window
22 | Compiling...
23 | test_filterlogfunc.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_filterlogfunc.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_funny/test_funny.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_funny" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_funny - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_funny.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_funny.mak" CFG="test_funny - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_funny - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_funny - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_funny - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_funny - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_funny - Win32 Release"
83 | # Name "test_funny - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_funny.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_funny/test_funny.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_funny - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP8D.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_funny.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_funny.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP8D.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP8E.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_funny.pdb" /debug /machine:I386 /out:"Debug/test_funny.exe" /pdbtype:sept
18 | ".\Debug\test_funny.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP8E.tmp"
21 | Output Window
22 | Compiling...
23 | test_funny.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_funny.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_hello/Debug/test_hello.exp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/vc6/test_hello/Debug/test_hello.exp
--------------------------------------------------------------------------------
/test/vc6/test_hello/test_hello.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_hello" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_hello - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_hello.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_hello.mak" CFG="test_hello - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_hello - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_hello - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_hello - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_hello - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "LOG_GLOBAL_ENV" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_hello - Win32 Release"
83 | # Name "test_hello - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_hello.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_hello/test_hello.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/vc6/test_hello/test_hello.log
--------------------------------------------------------------------------------
/test/vc6/test_hello2/test_hello2.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_hello2" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_hello2 - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_hello2.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_hello2.mak" CFG="test_hello2 - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_hello2 - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_hello2 - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_hello2 - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_hello2 - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_hello2 - Win32 Release"
83 | # Name "test_hello2 - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_hello2.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_logc/test_logc.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_logc" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_logc - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_logc.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_logc.mak" CFG="test_logc - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_logc - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_logc - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_logc - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_logc - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Target_Dir ""
66 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
67 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
69 | # ADD RSC /l 0x804 /d "_DEBUG"
70 | BSC32=bscmake.exe
71 | # ADD BASE BSC32 /nologo
72 | # ADD BSC32 /nologo
73 | LINK32=link.exe
74 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
75 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 |
77 | !ENDIF
78 |
79 | # Begin Target
80 |
81 | # Name "test_logc - Win32 Release"
82 | # Name "test_logc - Win32 Debug"
83 | # Begin Group "Source Files"
84 |
85 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
86 | # Begin Source File
87 |
88 | SOURCE=..\..\..\src\LOGC.c
89 | # End Source File
90 | # Begin Source File
91 |
92 | SOURCE=..\..\test_logc.c
93 | # End Source File
94 | # End Group
95 | # Begin Group "Header Files"
96 |
97 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
98 | # End Group
99 | # Begin Group "Resource Files"
100 |
101 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
102 | # End Group
103 | # End Target
104 | # End Project
105 |
--------------------------------------------------------------------------------
/test/vc6/test_logconf/test_logconf.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_logconf" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_logconf - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_logconf.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_logconf.mak" CFG="test_logconf - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_logconf - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_logconf - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_logconf - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_logconf - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_logconf - Win32 Release"
83 | # Name "test_logconf - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_logconf.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_logconf/test_logconf.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_logconf - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP1E4.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_logconf.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.6\test\test_logconf.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP1E4.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP1E5.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_logconf.pdb" /debug /machine:I386 /out:"Debug/test_logconf.exe" /pdbtype:sept
18 | ".\Debug\test_logconf.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP1E5.tmp"
21 | Output Window
22 | Compiling...
23 | test_logconf.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_logconf.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_logs/test_logs.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_logs" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_logs - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_logs.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_logs.mak" CFG="test_logs - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_logs - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_logs - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_logs - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_logs - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_logs - Win32 Release"
83 | # Name "test_logs - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_logs.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_logs/test_logs.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_logs - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP6F.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_logs.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_logs.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP6F.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP70.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_logs.pdb" /debug /machine:I386 /out:"Debug/test_logs.exe" /pdbtype:sept
18 | ".\Debug\test_logs.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP70.tmp"
21 | Output Window
22 | Compiling...
23 | test_logs.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_logs.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_logsconf/Debug/test_logsconf.conf:
--------------------------------------------------------------------------------
1 | id hello
2 | output FILE test_logsconf.log
3 | level INFO
4 | styles DATETIME|LOGLEVEL|PID|TID|SOURCE|FORMAT|NEWLINE
5 | options CHANGE_TEST
6 | rotate_mode SIZE
7 | rotate_size 10MB
8 | log_bufsize 1MB 5MB
9 |
10 | id stdout
11 | output STDOUT
12 | level INFO
13 | styles DATETIME|LOGLEVEL|PID|TID|SOURCE|FORMAT|NEWLINE
14 |
--------------------------------------------------------------------------------
/test/vc6/test_logsconf/test_logsconf.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_logsconf" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_logsconf - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_logsconf.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_logsconf.mak" CFG="test_logsconf - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_logsconf - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_logsconf - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_logsconf - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_logsconf - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_logsconf - Win32 Release"
83 | # Name "test_logsconf - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_logsconf.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # Begin Source File
100 |
101 | SOURCE=.\Debug\test_logsconf.conf
102 | # End Source File
103 | # End Group
104 | # End Target
105 | # End Project
106 |
--------------------------------------------------------------------------------
/test/vc6/test_logsconf/test_logsconf.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_demo - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38A.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_demo.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_demo.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38A.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38B.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_demo.pdb" /debug /machine:I386 /out:"Debug/test_demo.exe" /pdbtype:sept
18 | ".\Debug\test_demo.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38B.tmp"
21 | Output Window
22 | Compiling...
23 | test_demo.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_demo.exe - 0 error(s), 0 warning(s)
30 |
31 | --------------------Configuration: test_funny - Win32 Debug--------------------
32 |
33 | Command Lines
34 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38D.tmp" with contents
35 | [
36 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_funny.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
37 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_funny.c"
38 | ]
39 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38D.tmp"
40 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38E.tmp" with contents
41 | [
42 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_funny.pdb" /debug /machine:I386 /out:"Debug/test_funny.exe" /pdbtype:sept
43 | ".\Debug\test_funny.obj"
44 | ]
45 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP38E.tmp"
46 | Output Window
47 | Compiling...
48 | test_funny.c
49 | Linking...
50 |
51 |
52 |
53 | Results
54 | test_funny.exe - 0 error(s), 0 warning(s)
55 |
56 | --------------------Configuration: test_hello - Win32 Debug--------------------
57 |
58 | Command Lines
59 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP390.tmp" with contents
60 | [
61 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "LOG_GLOBAL_ENV" /Fp"Debug/test_hello.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
62 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_hello.c"
63 | ]
64 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP390.tmp"
65 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP391.tmp" with contents
66 | [
67 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_hello.pdb" /debug /machine:I386 /out:"Debug/test_hello.exe" /pdbtype:sept
68 | ".\Debug\test_hello.obj"
69 | ]
70 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP391.tmp"
71 | Output Window
72 | Compiling...
73 | test_hello.c
74 | Linking...
75 |
76 |
77 |
78 | Results
79 | test_hello.exe - 0 error(s), 0 warning(s)
80 |
81 | --------------------Configuration: test_logs - Win32 Debug--------------------
82 |
83 | Command Lines
84 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP393.tmp" with contents
85 | [
86 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_logs.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
87 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_logs.c"
88 | ]
89 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP393.tmp"
90 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP394.tmp" with contents
91 | [
92 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_logs.pdb" /debug /machine:I386 /out:"Debug/test_logs.exe" /pdbtype:sept
93 | ".\Debug\test_logs.obj"
94 | ]
95 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP394.tmp"
96 | Output Window
97 | Compiling...
98 | test_logs.c
99 | Linking...
100 |
101 |
102 |
103 | Results
104 | test_logs.exe - 0 error(s), 0 warning(s)
105 |
106 | --------------------Configuration: test_memoryleak - Win32 Debug--------------------
107 |
108 | Command Lines
109 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP396.tmp" with contents
110 | [
111 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_memoryleak.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
112 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_memoryleak.c"
113 | ]
114 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP396.tmp"
115 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP397.tmp" with contents
116 | [
117 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_memoryleak.pdb" /debug /machine:I386 /out:"Debug/test_memoryleak.exe" /pdbtype:sept
118 | ".\Debug\test_memoryleak.obj"
119 | ]
120 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP397.tmp"
121 | Output Window
122 | Compiling...
123 | test_memoryleak.c
124 | Linking...
125 |
126 |
127 |
128 | Results
129 | test_memoryleak.exe - 0 error(s), 0 warning(s)
130 |
131 | --------------------Configuration: test_outputfunc - Win32 Debug--------------------
132 |
133 | Command Lines
134 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP399.tmp" with contents
135 | [
136 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_outputfunc.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
137 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_outputfunc.c"
138 | ]
139 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP399.tmp"
140 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39A.tmp" with contents
141 | [
142 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_outputfunc.pdb" /debug /machine:I386 /out:"Debug/test_outputfunc.exe" /pdbtype:sept
143 | ".\Debug\test_outputfunc.obj"
144 | ]
145 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39A.tmp"
146 | Output Window
147 | Compiling...
148 | test_outputfunc.c
149 | Linking...
150 |
151 |
152 |
153 | Results
154 | test_outputfunc.exe - 0 error(s), 0 warning(s)
155 |
156 | --------------------Configuration: test_press - Win32 Debug--------------------
157 |
158 | Command Lines
159 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39C.tmp" with contents
160 | [
161 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
162 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_press.c"
163 | ]
164 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39C.tmp"
165 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39D.tmp" with contents
166 | [
167 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press.pdb" /debug /machine:I386 /out:"Debug/test_press.exe" /pdbtype:sept
168 | ".\Debug\test_press.obj"
169 | ]
170 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39D.tmp"
171 | Output Window
172 | Compiling...
173 | test_press.c
174 | Linking...
175 |
176 |
177 |
178 | Results
179 | test_press.exe - 0 error(s), 0 warning(s)
180 |
181 | --------------------Configuration: test_press_mpt - Win32 Debug--------------------
182 |
183 | Command Lines
184 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39F.tmp" with contents
185 | [
186 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press_mpt.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
187 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_press_mpt.c"
188 | ]
189 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP39F.tmp"
190 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A0.tmp" with contents
191 | [
192 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press_mpt.pdb" /debug /machine:I386 /out:"Debug/test_press_mpt.exe" /pdbtype:sept
193 | ".\Debug\test_press_mpt.obj"
194 | ]
195 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A0.tmp"
196 | Output Window
197 | Compiling...
198 | test_press_mpt.c
199 | Linking...
200 |
201 |
202 |
203 | Results
204 | test_press_mpt.exe - 0 error(s), 0 warning(s)
205 |
206 | --------------------Configuration: test_press_mpt_tls - Win32 Debug--------------------
207 |
208 | Command Lines
209 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A2.tmp" with contents
210 | [
211 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press_mpt_tls.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
212 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_press_mpt_tls.c"
213 | ]
214 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A2.tmp"
215 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A3.tmp" with contents
216 | [
217 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press_mpt_tls.pdb" /debug /machine:I386 /out:"Debug/test_press_mpt_tls.exe" /pdbtype:sept
218 | ".\Debug\test_press_mpt_tls.obj"
219 | ]
220 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A3.tmp"
221 | Output Window
222 | Compiling...
223 | test_press_mpt_tls.c
224 | Linking...
225 |
226 |
227 |
228 | Results
229 | test_press_mpt_tls.exe - 0 error(s), 0 warning(s)
230 |
231 | --------------------Configuration: test_stylesfunc - Win32 Debug--------------------
232 |
233 | Command Lines
234 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A5.tmp" with contents
235 | [
236 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_stylesfunc.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
237 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_stylesfunc.c"
238 | ]
239 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A5.tmp"
240 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A6.tmp" with contents
241 | [
242 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_stylesfunc.pdb" /debug /machine:I386 /out:"Debug/test_stylesfunc.exe" /pdbtype:sept
243 | ".\Debug\test_stylesfunc.obj"
244 | ]
245 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A6.tmp"
246 | Output Window
247 | Compiling...
248 | test_stylesfunc.c
249 | Linking...
250 |
251 |
252 |
253 | Results
254 | test_stylesfunc.exe - 0 error(s), 0 warning(s)
255 |
256 | --------------------Configuration: test_logconf - Win32 Debug--------------------
257 |
258 | Command Lines
259 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A8.tmp" with contents
260 | [
261 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_logconf.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
262 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_logconf.c"
263 | ]
264 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A8.tmp"
265 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A9.tmp" with contents
266 | [
267 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_logconf.pdb" /debug /machine:I386 /out:"Debug/test_logconf.exe" /pdbtype:sept
268 | ".\Debug\test_logconf.obj"
269 | ]
270 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3A9.tmp"
271 | Output Window
272 | Compiling...
273 | test_logconf.c
274 | Linking...
275 |
276 |
277 |
278 | Results
279 | test_logconf.exe - 0 error(s), 0 warning(s)
280 |
281 | --------------------Configuration: test_logsconf - Win32 Debug--------------------
282 |
283 | Command Lines
284 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3AB.tmp" with contents
285 | [
286 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_logsconf.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
287 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_logsconf.c"
288 | ]
289 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3AB.tmp"
290 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3AC.tmp" with contents
291 | [
292 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_logsconf.pdb" /debug /machine:I386 /out:"Debug/test_logsconf.exe" /pdbtype:sept
293 | ".\Debug\test_logsconf.obj"
294 | ]
295 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP3AC.tmp"
296 | Output Window
297 | Compiling...
298 | test_logsconf.c
299 | Linking...
300 |
301 |
302 |
303 | Results
304 | test_logsconf.exe - 0 error(s), 0 warning(s)
305 |
306 |
307 |
308 |
--------------------------------------------------------------------------------
/test/vc6/test_memoryleak/test_memoryleak.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_memoryleak" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_memoryleak - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_memoryleak.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_memoryleak.mak" CFG="test_memoryleak - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_memoryleak - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_memoryleak - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_memoryleak - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_memoryleak - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_memoryleak - Win32 Release"
83 | # Name "test_memoryleak - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_memoryleak.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_memoryleak/test_memoryleak.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_hello - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP10D.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "LOG_GLOBAL_ENV" /Fp"Debug/test_hello.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_hello.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP10D.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP10E.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_hello.pdb" /debug /machine:I386 /out:"Debug/test_hello.exe" /pdbtype:sept
18 | ".\Debug\test_hello.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP10E.tmp"
21 | Output Window
22 | Compiling...
23 | test_hello.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_hello.exe - 0 error(s), 0 warning(s)
30 |
31 | --------------------Configuration: test_memoryleak - Win32 Debug--------------------
32 |
33 | Command Lines
34 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP110.tmp" with contents
35 | [
36 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_memoryleak.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
37 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_memoryleak.c"
38 | ]
39 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP110.tmp"
40 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP111.tmp" with contents
41 | [
42 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_memoryleak.pdb" /debug /machine:I386 /out:"Debug/test_memoryleak.exe" /pdbtype:sept
43 | ".\Debug\test_memoryleak.obj"
44 | ]
45 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP111.tmp"
46 | Output Window
47 | Compiling...
48 | test_memoryleak.c
49 | Linking...
50 |
51 |
52 |
53 | Results
54 | test_memoryleak.exe - 0 error(s), 0 warning(s)
55 |
56 | --------------------Configuration: test_outputfunc - Win32 Debug--------------------
57 |
58 | Command Lines
59 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP113.tmp" with contents
60 | [
61 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_outputfunc.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
62 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_outputfunc.c"
63 | ]
64 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP113.tmp"
65 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP114.tmp" with contents
66 | [
67 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_outputfunc.pdb" /debug /machine:I386 /out:"Debug/test_outputfunc.exe" /pdbtype:sept
68 | ".\Debug\test_outputfunc.obj"
69 | ]
70 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP114.tmp"
71 | Output Window
72 | Compiling...
73 | test_outputfunc.c
74 | Linking...
75 |
76 |
77 |
78 | Results
79 | test_outputfunc.exe - 0 error(s), 0 warning(s)
80 |
81 | --------------------Configuration: test_press - Win32 Debug--------------------
82 |
83 | Command Lines
84 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP116.tmp" with contents
85 | [
86 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
87 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_press.c"
88 | ]
89 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP116.tmp"
90 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP117.tmp" with contents
91 | [
92 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press.pdb" /debug /machine:I386 /out:"Debug/test_press.exe" /pdbtype:sept
93 | ".\Debug\test_press.obj"
94 | ]
95 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP117.tmp"
96 | Output Window
97 | Compiling...
98 | test_press.c
99 | Linking...
100 |
101 |
102 |
103 | Results
104 | test_press.exe - 0 error(s), 0 warning(s)
105 |
106 | --------------------Configuration: test_press_mpt - Win32 Debug--------------------
107 |
108 | Command Lines
109 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP119.tmp" with contents
110 | [
111 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press_mpt.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
112 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_press_mpt.c"
113 | ]
114 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP119.tmp"
115 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11A.tmp" with contents
116 | [
117 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press_mpt.pdb" /debug /machine:I386 /out:"Debug/test_press_mpt.exe" /pdbtype:sept
118 | ".\Debug\test_press_mpt.obj"
119 | ]
120 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11A.tmp"
121 | Output Window
122 | Compiling...
123 | test_press_mpt.c
124 | Linking...
125 |
126 |
127 |
128 | Results
129 | test_press_mpt.exe - 0 error(s), 0 warning(s)
130 |
131 | --------------------Configuration: test_press_mpt_tls - Win32 Debug--------------------
132 |
133 | Command Lines
134 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11C.tmp" with contents
135 | [
136 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press_mpt_tls.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
137 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_press_mpt_tls.c"
138 | ]
139 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11C.tmp"
140 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11D.tmp" with contents
141 | [
142 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press_mpt_tls.pdb" /debug /machine:I386 /out:"Debug/test_press_mpt_tls.exe" /pdbtype:sept
143 | ".\Debug\test_press_mpt_tls.obj"
144 | ]
145 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11D.tmp"
146 | Output Window
147 | Compiling...
148 | test_press_mpt_tls.c
149 | Linking...
150 |
151 |
152 |
153 | Results
154 | test_press_mpt_tls.exe - 0 error(s), 0 warning(s)
155 |
156 | --------------------Configuration: test_stylesfunc - Win32 Debug--------------------
157 |
158 | Command Lines
159 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11F.tmp" with contents
160 | [
161 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_stylesfunc.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
162 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_stylesfunc.c"
163 | ]
164 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP11F.tmp"
165 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP120.tmp" with contents
166 | [
167 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_stylesfunc.pdb" /debug /machine:I386 /out:"Debug/test_stylesfunc.exe" /pdbtype:sept
168 | ".\Debug\test_stylesfunc.obj"
169 | ]
170 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP120.tmp"
171 | Output Window
172 | Compiling...
173 | test_stylesfunc.c
174 | Linking...
175 |
176 |
177 |
178 | Results
179 | test_stylesfunc.exe - 0 error(s), 0 warning(s)
180 |
181 |
182 |
183 |
--------------------------------------------------------------------------------
/test/vc6/test_outputfunc/test_outputfunc.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_outputfunc" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_outputfunc - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_outputfunc.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_outputfunc.mak" CFG="test_outputfunc - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_outputfunc - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_outputfunc - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_outputfunc - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_outputfunc - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_outputfunc - Win32 Release"
83 | # Name "test_outputfunc - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_outputfunc.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_press/test_press.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_press" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_press - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_press.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_press.mak" CFG="test_press - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_press - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_press - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_press - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_press - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_press - Win32 Release"
83 | # Name "test_press - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_press.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_press/test_press.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_press - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSP3B6.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\clog-1.0.0\test\test_press.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSP3B6.tmp"
15 | Creating temporary file "C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSP3B7.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib clog.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press.pdb" /debug /machine:I386 /out:"Debug/test_press.exe" /pdbtype:sept
18 | ".\Debug\test_press.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSP3B7.tmp"
21 | Output Window
22 | Compiling...
23 | test_press.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_press.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_press_mpt/test_press_mpt.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_press_mpt" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_press_mpt - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_press_mpt.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_press_mpt.mak" CFG="test_press_mpt - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_press_mpt - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_press_mpt - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_press_mpt - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_press_mpt - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_press_mpt - Win32 Release"
83 | # Name "test_press_mpt - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_press_mpt.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_press_mpt/test_press_mpt.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_press_mpt - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP16E.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_press_mpt.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.2\test\test_press_mpt.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP16E.tmp"
15 | Creating temporary file "C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP16F.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_press_mpt.pdb" /debug /machine:I386 /out:"Debug/test_press_mpt.exe" /pdbtype:sept
18 | ".\Debug\test_press_mpt.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\calvin\LOCALS~1\Temp\RSP16F.tmp"
21 | Output Window
22 | Compiling...
23 | test_press_mpt.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_press_mpt.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/test_press_mpt_tls/test_press_mpt_tls.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_press_mpt_tls" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_press_mpt_tls - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_press_mpt_tls.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_press_mpt_tls.mak" CFG="test_press_mpt_tls - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_press_mpt_tls - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_press_mpt_tls - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_press_mpt_tls - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_press_mpt_tls - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_press_mpt_tls - Win32 Release"
83 | # Name "test_press_mpt_tls - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_press_mpt_tls.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_stylesfunc/test_stylesfunc.dsp:
--------------------------------------------------------------------------------
1 | # Microsoft Developer Studio Project File - Name="test_stylesfunc" - Package Owner=<4>
2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00
3 | # ** DO NOT EDIT **
4 |
5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103
6 |
7 | CFG=test_stylesfunc - Win32 Debug
8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9 | !MESSAGE use the Export Makefile command and run
10 | !MESSAGE
11 | !MESSAGE NMAKE /f "test_stylesfunc.mak".
12 | !MESSAGE
13 | !MESSAGE You can specify a configuration when running NMAKE
14 | !MESSAGE by defining the macro CFG on the command line. For example:
15 | !MESSAGE
16 | !MESSAGE NMAKE /f "test_stylesfunc.mak" CFG="test_stylesfunc - Win32 Debug"
17 | !MESSAGE
18 | !MESSAGE Possible choices for configuration are:
19 | !MESSAGE
20 | !MESSAGE "test_stylesfunc - Win32 Release" (based on "Win32 (x86) Console Application")
21 | !MESSAGE "test_stylesfunc - Win32 Debug" (based on "Win32 (x86) Console Application")
22 | !MESSAGE
23 |
24 | # Begin Project
25 | # PROP AllowPerConfigDependencies 0
26 | # PROP Scc_ProjName ""
27 | # PROP Scc_LocalPath ""
28 | CPP=cl.exe
29 | RSC=rc.exe
30 |
31 | !IF "$(CFG)" == "test_stylesfunc - Win32 Release"
32 |
33 | # PROP BASE Use_MFC 0
34 | # PROP BASE Use_Debug_Libraries 0
35 | # PROP BASE Output_Dir "Release"
36 | # PROP BASE Intermediate_Dir "Release"
37 | # PROP BASE Target_Dir ""
38 | # PROP Use_MFC 0
39 | # PROP Use_Debug_Libraries 0
40 | # PROP Output_Dir "Release"
41 | # PROP Intermediate_Dir "Release"
42 | # PROP Target_Dir ""
43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 | # ADD BASE RSC /l 0x804 /d "NDEBUG"
46 | # ADD RSC /l 0x804 /d "NDEBUG"
47 | BSC32=bscmake.exe
48 | # ADD BASE BSC32 /nologo
49 | # ADD BSC32 /nologo
50 | LINK32=link.exe
51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
53 |
54 | !ELSEIF "$(CFG)" == "test_stylesfunc - Win32 Debug"
55 |
56 | # PROP BASE Use_MFC 0
57 | # PROP BASE Use_Debug_Libraries 1
58 | # PROP BASE Output_Dir "Debug"
59 | # PROP BASE Intermediate_Dir "Debug"
60 | # PROP BASE Target_Dir ""
61 | # PROP Use_MFC 0
62 | # PROP Use_Debug_Libraries 1
63 | # PROP Output_Dir "Debug"
64 | # PROP Intermediate_Dir "Debug"
65 | # PROP Ignore_Export_Lib 0
66 | # PROP Target_Dir ""
67 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
68 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
69 | # ADD BASE RSC /l 0x804 /d "_DEBUG"
70 | # ADD RSC /l 0x804 /d "_DEBUG"
71 | BSC32=bscmake.exe
72 | # ADD BASE BSC32 /nologo
73 | # ADD BSC32 /nologo
74 | LINK32=link.exe
75 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
76 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
77 |
78 | !ENDIF
79 |
80 | # Begin Target
81 |
82 | # Name "test_stylesfunc - Win32 Release"
83 | # Name "test_stylesfunc - Win32 Debug"
84 | # Begin Group "Source Files"
85 |
86 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
87 | # Begin Source File
88 |
89 | SOURCE=..\..\test_stylesfunc.c
90 | # End Source File
91 | # End Group
92 | # Begin Group "Header Files"
93 |
94 | # PROP Default_Filter "h;hpp;hxx;hm;inl"
95 | # End Group
96 | # Begin Group "Resource Files"
97 |
98 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
99 | # End Group
100 | # End Target
101 | # End Project
102 |
--------------------------------------------------------------------------------
/test/vc6/test_stylesfunc/test_stylesfunc.plg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Build Log
5 |
6 | --------------------Configuration: test_stylesfunc - Win32 Debug--------------------
7 |
8 | Command Lines
9 | Creating temporary file "C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSPE7.tmp" with contents
10 | [
11 | /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/test_stylesfunc.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c
12 | "D:\Work\C Projects\iLOG3-1.0.0\test\test_stylesfunc.c"
13 | ]
14 | Creating command line "cl.exe @C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSPE7.tmp"
15 | Creating temporary file "C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSPE8.tmp" with contents
16 | [
17 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib iLOG3.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/test_stylesfunc.pdb" /debug /machine:I386 /out:"Debug/test_stylesfunc.exe" /pdbtype:sept
18 | ".\Debug\test_stylesfunc.obj"
19 | ]
20 | Creating command line "link.exe @C:\DOCUME~1\hzbank\LOCALS~1\Temp\RSPE8.tmp"
21 | Output Window
22 | Compiling...
23 | test_stylesfunc.c
24 | Linking...
25 |
26 |
27 |
28 | Results
29 | test_stylesfunc.exe - 0 error(s), 0 warning(s)
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/vc6/vc6.dsw:
--------------------------------------------------------------------------------
1 | Microsoft Developer Studio Workspace File, Format Version 6.00
2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
3 |
4 | ###############################################################################
5 |
6 | Project: "test_afterrotatefile"=".\test_afterrotatefile\test_afterrotatefile.dsp" - Package Owner=<4>
7 |
8 | Package=<5>
9 | {{{
10 | }}}
11 |
12 | Package=<4>
13 | {{{
14 | }}}
15 |
16 | ###############################################################################
17 |
18 | Project: "test_demo"=".\test_demo\test_demo.dsp" - Package Owner=<4>
19 |
20 | Package=<5>
21 | {{{
22 | }}}
23 |
24 | Package=<4>
25 | {{{
26 | }}}
27 |
28 | ###############################################################################
29 |
30 | Project: "test_filterlogfunc"=".\test_filterlogfunc\test_filterlogfunc.dsp" - Package Owner=<4>
31 |
32 | Package=<5>
33 | {{{
34 | }}}
35 |
36 | Package=<4>
37 | {{{
38 | }}}
39 |
40 | ###############################################################################
41 |
42 | Project: "test_funny"=".\test_funny\test_funny.dsp" - Package Owner=<4>
43 |
44 | Package=<5>
45 | {{{
46 | }}}
47 |
48 | Package=<4>
49 | {{{
50 | }}}
51 |
52 | ###############################################################################
53 |
54 | Project: "test_hello"=".\test_hello\test_hello.dsp" - Package Owner=<4>
55 |
56 | Package=<5>
57 | {{{
58 | }}}
59 |
60 | Package=<4>
61 | {{{
62 | }}}
63 |
64 | ###############################################################################
65 |
66 | Project: "test_hello2"=".\test_hello2\test_hello2.dsp" - Package Owner=<4>
67 |
68 | Package=<5>
69 | {{{
70 | }}}
71 |
72 | Package=<4>
73 | {{{
74 | }}}
75 |
76 | ###############################################################################
77 |
78 | Project: "test_logc"=".\test_logc\test_logc.dsp" - Package Owner=<4>
79 |
80 | Package=<5>
81 | {{{
82 | }}}
83 |
84 | Package=<4>
85 | {{{
86 | }}}
87 |
88 | ###############################################################################
89 |
90 | Project: "test_logconf"=".\test_logconf\test_logconf.dsp" - Package Owner=<4>
91 |
92 | Package=<5>
93 | {{{
94 | }}}
95 |
96 | Package=<4>
97 | {{{
98 | }}}
99 |
100 | ###############################################################################
101 |
102 | Project: "test_logs"=".\test_logs\test_logs.dsp" - Package Owner=<4>
103 |
104 | Package=<5>
105 | {{{
106 | }}}
107 |
108 | Package=<4>
109 | {{{
110 | }}}
111 |
112 | ###############################################################################
113 |
114 | Project: "test_logsconf"=".\test_logsconf\test_logsconf.dsp" - Package Owner=<4>
115 |
116 | Package=<5>
117 | {{{
118 | }}}
119 |
120 | Package=<4>
121 | {{{
122 | }}}
123 |
124 | ###############################################################################
125 |
126 | Project: "test_memoryleak"=".\test_memoryleak\test_memoryleak.dsp" - Package Owner=<4>
127 |
128 | Package=<5>
129 | {{{
130 | }}}
131 |
132 | Package=<4>
133 | {{{
134 | }}}
135 |
136 | ###############################################################################
137 |
138 | Project: "test_outputfunc"=".\test_outputfunc\test_outputfunc.dsp" - Package Owner=<4>
139 |
140 | Package=<5>
141 | {{{
142 | }}}
143 |
144 | Package=<4>
145 | {{{
146 | }}}
147 |
148 | ###############################################################################
149 |
150 | Project: "test_press"=".\test_press\test_press.dsp" - Package Owner=<4>
151 |
152 | Package=<5>
153 | {{{
154 | }}}
155 |
156 | Package=<4>
157 | {{{
158 | }}}
159 |
160 | ###############################################################################
161 |
162 | Project: "test_press_mpt"=".\test_press_mpt\test_press_mpt.dsp" - Package Owner=<4>
163 |
164 | Package=<5>
165 | {{{
166 | }}}
167 |
168 | Package=<4>
169 | {{{
170 | }}}
171 |
172 | ###############################################################################
173 |
174 | Project: "test_press_mpt_tls"=".\test_press_mpt_tls\test_press_mpt_tls.dsp" - Package Owner=<4>
175 |
176 | Package=<5>
177 | {{{
178 | }}}
179 |
180 | Package=<4>
181 | {{{
182 | }}}
183 |
184 | ###############################################################################
185 |
186 | Project: "test_stylesfunc"=".\test_stylesfunc\test_stylesfunc.dsp" - Package Owner=<4>
187 |
188 | Package=<5>
189 | {{{
190 | }}}
191 |
192 | Package=<4>
193 | {{{
194 | }}}
195 |
196 | ###############################################################################
197 |
198 | Global:
199 |
200 | Package=<5>
201 | {{{
202 | }}}
203 |
204 | Package=<3>
205 | {{{
206 | }}}
207 |
208 | ###############################################################################
209 |
210 |
--------------------------------------------------------------------------------
/test/vc6/vc6.ncb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/vc6/vc6.ncb
--------------------------------------------------------------------------------
/test/vc6/vc6.opt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calvinwilliams/iLOG3/3a923e4892474ff1f1772b65668da03c5bc81d6b/test/vc6/vc6.opt
--------------------------------------------------------------------------------