mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 01:58:22 +08:00
16 lines
310 B
C++
Executable File
16 lines
310 B
C++
Executable File
// OCC.cpp : Defines the entry point for the DLL application.
|
|
//
|
|
//__declspec(dllexport)
|
|
|
|
#include "stdafx.h"
|
|
#include "OCCViewer.h"
|
|
#pragma unmanaged
|
|
BOOL APIENTRY DllMain( HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|