mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-11 10:44:53 +03:00
25 lines
422 B
C
Executable File
25 lines
422 B
C
Executable File
#ifdef WNT
|
|
|
|
|
|
#define COMMANDCLASS "COMMANDWINDOW"
|
|
#define COMMANDTITLE "Command Window"
|
|
|
|
|
|
HWND CreateCommandWindow(HWND, int);
|
|
LONG APIENTRY CommandProc(HWND, UINT, WPARAM, LONG);
|
|
BOOL CommandCreateProc(HWND);
|
|
VOID CommandDestroyProc(HWND);
|
|
BOOL CommandHandler(HWND, WPARAM, LPARAM);
|
|
|
|
|
|
#include <sys/stat.h>
|
|
#include <tcl.h>
|
|
#include <Standard_Stream.hxx>
|
|
#include <stdio.h>
|
|
//#include <io.h>
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#endif
|