30 lines
804 B
C
30 lines
804 B
C
/** @file
|
|
Dummy C file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2013-2015, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
/**
|
|
Main entry point for Windows program
|
|
|
|
@param Argc Number of command line arguments
|
|
@param Argv Array of command line argument strings
|
|
|
|
@retval 0 Normal exit
|
|
*/
|
|
int
|
|
main (
|
|
IN int Argc,
|
|
IN char **Argv
|
|
)
|
|
{
|
|
return 0;
|
|
} |