-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGEOUICMDLIST.h
46 lines (34 loc) · 1.21 KB
/
GEOUICMDLIST.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// GEOUICMDLIST.h: interface for the C_GEOUICMDLIST class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GEOUICMDLIST_H__A3F23B73_AB76_11D5_856B_0060086FD147__INCLUDED_)
#define AFX_GEOUICMDLIST_H__A3F23B73_AB76_11D5_856B_0060086FD147__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define INITGUID
#import "msado15.dll" no_namespace rename ("EOF", "EndOfFile") rename ("EOS", "ADOEOS")
#include "gs_list.h" // per le liste
#include "gs_cmd.h" // per le tabelle di funzioni
#include "gs_utily.h"
#include "gs_error.h"
#include "gs_user.h"
#include "GEOUIacad_cmd.h" //comandi di Autocad ridefiniti da GEOUI
#include "GEOUIlisp_cmd.h" //funzioni lisp
class C_GEOUICMDLIST
{
public:
C_GEOUICMDLIST();
virtual ~C_GEOUICMDLIST();
//int UndefineAcadCmds(void);
//int RedefineAcadCmds(void);
int funcLoad();
int funcUnload();
FunTable *get_ptr_fun(int val);
int dofun();
private:
FunTable *exfun;
int LenExfun;
C_STR_LIST AcadCmds;
};
#endif // !defined(AFX_GEOUICMDLIST_H__A3F23B73_AB76_11D5_856B_0060086FD147__INCLUDED_)