mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
24 lines
654 B
C
24 lines
654 B
C
/*
|
|
* LWSDK Header File
|
|
* Copyright 1999, NewTek, Inc.
|
|
*
|
|
* LWSURFED.H -- LightWave Surface Editor
|
|
*/
|
|
|
|
#ifndef LWSDK_SURFED_H
|
|
#define LWSDK_SURFED_H
|
|
|
|
#include <lwsurf.h>
|
|
|
|
#define LWSURFEDFUNCS_GLOBAL "SurfaceEditor Functions"
|
|
|
|
typedef struct st_LWSurfEdFuncs {
|
|
void (*open)(int);
|
|
void (*close)(void);
|
|
int (*isOpen)(void);
|
|
void (*setSurface)(LWSurfaceID);
|
|
void (*setPosition)(int x, int y);
|
|
void (*getPosition)(int *x, int *y,int *w,int *h);
|
|
} LWSurfEdFuncs;
|
|
|
|
#endif |