You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
298 B
20 lines
298 B
#ifndef LSIOCON_DEFINED
|
|
#define LSIOCON_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "pilsobj.h"
|
|
#include "lsimeth.h"
|
|
|
|
typedef struct lsiobjcontext
|
|
{
|
|
DWORD iobjMac;
|
|
struct OBJ
|
|
{
|
|
PILSOBJ pilsobj;
|
|
LSIMETHODS lsim;
|
|
} rgobj[1];
|
|
} LSIOBJCONTEXT;
|
|
|
|
|
|
#endif /* LSIOCON_DEFINED */
|
|
|