diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/oleutest/balls/srv/cubes | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to 'private/oleutest/balls/srv/cubes')
-rw-r--r-- | private/oleutest/balls/srv/cubes/cubesrv.cxx | 41 | ||||
-rw-r--r-- | private/oleutest/balls/srv/cubes/daytona/makefile | 10 | ||||
-rw-r--r-- | private/oleutest/balls/srv/cubes/daytona/sources | 54 | ||||
-rw-r--r-- | private/oleutest/balls/srv/cubes/dirs | 38 |
4 files changed, 143 insertions, 0 deletions
diff --git a/private/oleutest/balls/srv/cubes/cubesrv.cxx b/private/oleutest/balls/srv/cubes/cubesrv.cxx new file mode 100644 index 000000000..9f65da648 --- /dev/null +++ b/private/oleutest/balls/srv/cubes/cubesrv.cxx @@ -0,0 +1,41 @@ +//+------------------------------------------------------------------- +// +// File: srvmain.cxx +// +// Contents: This file contins the EXE entry points +// WinMain +// +// Classes: +// +// History: 30-Nov-92 SarahJ Created +// +//--------------------------------------------------------------------- +#include <common.h> +#include <cubescf.hxx> + +//+------------------------------------------------------------------- +// +// Function: WinMain +// +// Synopsis: Entry point to DLL - does little else +// +// Arguments: +// +// Returns: TRUE +// +// History: 21-Nov-92 SarahJ Created +// +//-------------------------------------------------------------------- +int WINAPI WinMain( + HINSTANCE hInstance, + HINSTANCE hPrevInstance, + LPSTR lpCmdLine, + int nCmdShow) +{ + CCubesClassFactory *pCF = new CCubesClassFactory(); + + int sc = SrvMain(hInstance, CLSID_Cubes, REGCLS_MULTIPLEUSE, + TEXT("Cubes Server"), pCF); + + return sc; +} diff --git a/private/oleutest/balls/srv/cubes/daytona/makefile b/private/oleutest/balls/srv/cubes/daytona/makefile new file mode 100644 index 000000000..1d3728d41 --- /dev/null +++ b/private/oleutest/balls/srv/cubes/daytona/makefile @@ -0,0 +1,10 @@ +############################################################################ +# +# Copyright (C) 1992, Microsoft Corporation. +# +# All rights reserved. +# +############################################################################ + +!include $(NTMAKEENV)\makefile.def + diff --git a/private/oleutest/balls/srv/cubes/daytona/sources b/private/oleutest/balls/srv/cubes/daytona/sources new file mode 100644 index 000000000..53d0da37a --- /dev/null +++ b/private/oleutest/balls/srv/cubes/daytona/sources @@ -0,0 +1,54 @@ +!IF 0 + +Copyright (c) 1989 Microsoft Corporation + +Module Name: + + sources. + +Abstract: + + This file specifies the target component being built and the list of + sources files needed to build that component. Also specifies optional + compiler switches and libraries that are unique for the component being + built. + +!ENDIF + +# +# The following includes a global include file defined at the +# base of the project for all components +# + +!include ..\..\daytona.inc + +# +# This is the name of the target built from the source files specified +# below. The name should include neither the path nor the file extension. +# + +TARGETNAME= cubesrv + +# +# This specifies where the target is to be built. A private target of +# type LIBRARY or DYNLINK should go to obj, whereas a public target of +# type LIBRARY or DYNLINK should go to $(BASEDIR)\public\sdk\lib. +# + +TARGETPATH= obj + +# +# This specifies the type of the target, such as PROGRAM, DYNLINK, LIBRARY, +# etc. +# + +TARGETTYPE= PROGRAM + + +INCLUDES= $(INCLUDES) +C_DEFINES= $(C_DEFINES) + + + +SOURCES= \ + ..\cubesrv.cxx diff --git a/private/oleutest/balls/srv/cubes/dirs b/private/oleutest/balls/srv/cubes/dirs new file mode 100644 index 000000000..1d0b9edbb --- /dev/null +++ b/private/oleutest/balls/srv/cubes/dirs @@ -0,0 +1,38 @@ +!IF 0 + +Copyright (c) 1989 Microsoft Corporation + +Module Name: + + dirs. + +Abstract: + + This file specifies the subdirectories of the current directory that + contain component makefiles. + + +Author: + + Donna Liu (DonnaLi) 19-Dec-1993 + +!ENDIF + +# +# This is a list of all subdirectories that build required components. +# Each subdirectory name should appear on a line by itself. The build +# follows the order in which the subdirectories are specified. +# + +DIRS= + +# +# This is a list of all subdirectories that build optional components. +# Each subdirectory name should appear on a line by itself. The build +# follows the order in which the subdirectories are specified. +# + +OPTIONAL_DIRS= \ + \ + \ + daytona |