Changeset 22109 for branches


Ignore:
Timestamp:
Dec 4, 2015, 2:13:09 PM (10 years ago)
Author:
rousseau
Message:

Rename 'PmApiTest' to 'ApiTestPm' (content) [apitest]

Location:
branches/swt/testapp/apitest
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/swt/testapp/apitest/GNUmakefile

    r22107 r22109  
    11###############################################################################
    2 # GNUmakefile :: Build the PmApiTest Program                                  #
     2# GNUmakefile :: Build the ApiTestPm Program                                  #
    33# --------------------------------------------------------------------------- #
    44# For this initial version we start with a PM version because, well, we are   #
     
    2626
    2727# PM version of ApiTest
    28 $(out)/PmApiTest.exe: $(src)/PmApiTest.cpp $(src)/PmApiTest.def
     28$(out)/ApiTestPm.exe: $(src)/ApiTestPm.cpp $(src)/ApiTestPm.def
    2929        @echo [$@]
    30         gcc -Zomf -I$(inc) $< -o $@ $(src)/PmApiTest.def
     30        gcc -Zomf -I$(inc) $< -o $@ $(src)/ApiTestPm.def
    3131        wrc -q -bt=os2 -zm $(src)/resource.rc $@
    3232
    3333# The default target
    34 default: $(out)/PmApiTest.exe
     34default: $(out)/ApiTestPm.exe
    3535#       @echo [$@]
    3636
     
    4747run: build
    4848        @echo [$@]
    49         $(out)/PmApiTest.exe
     49        $(out)/ApiTestPm.exe
    5050
    5151# Distribute to somewhere (NI)
  • branches/swt/testapp/apitest/src/ApiTestPm.cpp

    r22108 r22109  
    11
    22/*****************************************************************************\
    3 * PmApiTest.cpp                                                               *
     3* ApiTestPm.cpp                                                               *
    44* --------------------------------------------------------------------------- *
    55* This is the PM version of the ApiTest program.                              *
     
    186186            };
    187187    PSZ     pszClassClient  = (PSZ) "PmMainWindow";             // Window Class Name
    188     PSZ     pszTitle        = (PSZ) "PmApiTest :: Main Window"; // Window Title
     188    PSZ     pszTitle        = (PSZ) "ApiTestPm :: Main Window"; // Window Title
    189189    ULONG   flStyleClient   = 0;                                // Style for Client Window
    190190    HWND    hwndFrame       = NULL;                             // Receives handle for Frame Window
     
    279279
    280280    /* App is terminating */
    281     printf("PmApiTest is terminating...\n");
     281    printf("ApiTestPm is terminating...\n");
    282282
    283283    /* Return our reply-code */
  • branches/swt/testapp/apitest/src/ApiTestPm.def

    r22108 r22109  
    11;##############################################################################
    2 ;# PmApiTest.def :: Module Definition file                                    #
     2;# ApiTestPm.def :: Module Definition file                                    #
    33;# -------------------------------------------------------------------------- #
    44;# PmApiTest is the PM version of the ApiTest program.                        #
     
    1010
    1111
    12 NAME            PmApiTest   WINDOWCOMPAT
     12NAME            ApiTestPm   WINDOWCOMPAT
    1313DESCRIPTION     'A Program to test the Odin32 API from Native PM'
    1414
Note: See TracChangeset for help on using the changeset viewer.