Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------
//
// 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; }
|