mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-16 10:08:36 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
// Created on: 1999-12-30
|
|
// Created by: data exchange team
|
|
// Copyright (c) 1999-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
// Defines common framework for declaration of main/WinMain functions
|
|
// for executbales on UNIX and WNT that extends DRAW Test Harness.
|
|
|
|
// In order to create executable in DRAW environment, in the executable
|
|
// the following line should be added:
|
|
// DRAW_MAIN
|
|
|
|
#ifndef Draw_Main_HeaderFile
|
|
#define Draw_Main_HeaderFile
|
|
|
|
#ifndef _Standard_TypeDef_HeaderFile
|
|
#include <Standard_TypeDef.hxx>
|
|
#endif
|
|
|
|
#include <Draw_Appli.hxx>
|
|
#include <Standard_PCharacter.hxx>
|
|
|
|
typedef void (*FDraw_InitAppli)(Draw_Interpretor&);
|
|
|
|
#ifndef WNT
|
|
Standard_EXPORT Standard_Integer _main_ (Standard_Integer argc,
|
|
Standard_PCharacter argv[],
|
|
const FDraw_InitAppli Draw_InitAppli);
|
|
#else
|
|
#include <windows.h>
|
|
Standard_EXPORT Standard_Integer _WinMain_ (HINSTANCE hInstance,
|
|
HINSTANCE hPrevinstance,
|
|
LPSTR lpCmdLine,
|
|
Standard_Integer nCmdShow,
|
|
const FDraw_InitAppli Draw_InitAppli);
|
|
|
|
Standard_EXPORT Standard_Integer _main_ (int argc,
|
|
char* argv[],
|
|
char* envp[],
|
|
const FDraw_InitAppli Draw_InitAppli);
|
|
#endif
|
|
|
|
// Declarations of macros DRAW_MAIN to be used in executables instead of explicit main/WinMain
|
|
#ifndef WNT
|
|
// main()
|
|
#define DRAW_MAIN int main (Standard_Integer argc, char* argv[])\
|
|
{return _main_ (argc, argv, Draw_InitAppli);}
|
|
#else
|
|
// WinMain() and main()
|
|
#define DRAW_MAIN Standard_Integer PASCAL WinMain (HINSTANCE hInstance, HINSTANCE hPrevinstance, LPSTR lpCmdLine, Standard_Integer nCmdShow)\
|
|
{return _WinMain_ (hInstance, hPrevinstance, lpCmdLine, nCmdShow, Draw_InitAppli);}\
|
|
\
|
|
int main (int argc, char* argv[], char* envp[])\
|
|
{return _main_ (argc, argv, envp, Draw_InitAppli);}
|
|
#endif
|
|
|
|
|
|
#endif
|