- Timestamp:
- Dec 4, 2015, 2:13:09 PM (10 years ago)
- Location:
- branches/swt/testapp/apitest
- Files:
-
- 3 edited
-
GNUmakefile (modified) (3 diffs)
-
src/ApiTestPm.cpp (modified) (3 diffs)
-
src/ApiTestPm.def (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/swt/testapp/apitest/GNUmakefile
r22107 r22109 1 1 ############################################################################### 2 # GNUmakefile :: Build the PmApiTestProgram #2 # GNUmakefile :: Build the ApiTestPm Program # 3 3 # --------------------------------------------------------------------------- # 4 4 # For this initial version we start with a PM version because, well, we are # … … 26 26 27 27 # PM version of ApiTest 28 $(out)/ PmApiTest.exe: $(src)/PmApiTest.cpp $(src)/PmApiTest.def28 $(out)/ApiTestPm.exe: $(src)/ApiTestPm.cpp $(src)/ApiTestPm.def 29 29 @echo [$@] 30 gcc -Zomf -I$(inc) $< -o $@ $(src)/ PmApiTest.def30 gcc -Zomf -I$(inc) $< -o $@ $(src)/ApiTestPm.def 31 31 wrc -q -bt=os2 -zm $(src)/resource.rc $@ 32 32 33 33 # The default target 34 default: $(out)/ PmApiTest.exe34 default: $(out)/ApiTestPm.exe 35 35 # @echo [$@] 36 36 … … 47 47 run: build 48 48 @echo [$@] 49 $(out)/ PmApiTest.exe49 $(out)/ApiTestPm.exe 50 50 51 51 # Distribute to somewhere (NI) -
branches/swt/testapp/apitest/src/ApiTestPm.cpp
r22108 r22109 1 1 2 2 /*****************************************************************************\ 3 * PmApiTest.cpp *3 * ApiTestPm.cpp * 4 4 * --------------------------------------------------------------------------- * 5 5 * This is the PM version of the ApiTest program. * … … 186 186 }; 187 187 PSZ pszClassClient = (PSZ) "PmMainWindow"; // Window Class Name 188 PSZ pszTitle = (PSZ) " PmApiTest:: Main Window"; // Window Title188 PSZ pszTitle = (PSZ) "ApiTestPm :: Main Window"; // Window Title 189 189 ULONG flStyleClient = 0; // Style for Client Window 190 190 HWND hwndFrame = NULL; // Receives handle for Frame Window … … 279 279 280 280 /* App is terminating */ 281 printf(" PmApiTestis terminating...\n");281 printf("ApiTestPm is terminating...\n"); 282 282 283 283 /* Return our reply-code */ -
branches/swt/testapp/apitest/src/ApiTestPm.def
r22108 r22109 1 1 ;############################################################################## 2 ;# PmApiTest.def :: Module Definition file #2 ;# ApiTestPm.def :: Module Definition file # 3 3 ;# -------------------------------------------------------------------------- # 4 4 ;# PmApiTest is the PM version of the ApiTest program. # … … 10 10 11 11 12 NAME PmApiTestWINDOWCOMPAT12 NAME ApiTestPm WINDOWCOMPAT 13 13 DESCRIPTION 'A Program to test the Odin32 API from Native PM' 14 14
Note:
See TracChangeset
for help on using the changeset viewer.
