cbsref/csyrefplugins/csy27010/src/DllMain.cpp
branchRCL_3
changeset 20 07a122eea281
parent 19 630d2f34d719
child 21 4814c5a49428
equal deleted inserted replaced
19:630d2f34d719 20:07a122eea281
     1 //
       
     2 // * Copyright 2004 Neusoft America Inc.
       
     3 // * All rights reserved.
       
     4 // * This component and the accompanying materials are made available
       
     5 // * under the terms of the Eclipse Public License v1.0
       
     6 // * which accompanies this distribution, and is available
       
     7 // * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 // *
       
     9 // * Contributors:
       
    10 // * Keith Collins (Neusoft America Inc.)  original software development and additional code and modifications.
       
    11 // * Thomas Gahagen (Neusoft America Inc.)  additional code and modifications.
       
    12 // * Zhen Yuan (Neusoft America Inc.)  additional code and modifications.
       
    13 // *
       
    14 // * Description:  This file contains the entry point for the CSY module.
       
    15 //
       
    16 
       
    17 // DllMain.cpp
       
    18 
       
    19 /** @file DllMain.cpp
       
    20  *
       
    21  */
       
    22 
       
    23 #include <cs_port.h>
       
    24 #include "Portfactory.h"
       
    25 #include "CsyDebugLogger.h"
       
    26 
       
    27 
       
    28 
       
    29 EXPORT_C CSerial* LibEntry()
       
    30 /**
       
    31  * The single exported function.
       
    32  * @return Pointer to and ownership of a new CSerial-derived object
       
    33  */
       
    34 	{
       
    35 	LOGHEADER();
       
    36 	return (CPortFactory::NewL());
       
    37 	}