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.
39 lines
1.0 KiB
39 lines
1.0 KiB
#include <tc/tc_startup.h> //ECHO
|
|
#include <string>
|
|
#include <vector>
|
|
#include <tc\preferences.h>
|
|
#include <tc\tc_macros.h>
|
|
#include <tccore/method.h>
|
|
#include <tccore/aom_prop.h>
|
|
#include <tccore/aom.h>
|
|
#include <tccore/item.h>
|
|
#include <tccore/tctype.h>
|
|
#include <ug_va_copy.h>
|
|
#include <tccore/grm.h>
|
|
#include <ae\ae.h>
|
|
#include <sstream>
|
|
//#include <atlstr.h>
|
|
#include <iostream>
|
|
#include <io.h>
|
|
#include <direct.h>
|
|
|
|
#define DOFREE(obj) \
|
|
{ \
|
|
if(obj != NULL) \
|
|
{ \
|
|
MEM_free(obj); \
|
|
obj = NULL; \
|
|
} \
|
|
}
|
|
|
|
using namespace std;
|
|
void Split( string strArg, string spliter, vector<string> &ans );
|
|
void add_tag_to_tag_array(tag_t add_tag,int *n_array,tag_t **tag_array);
|
|
void GTAC_create_item(char *item_id,char *item_name,char *item_type,char *rev_id,tag_t *item,tag_t *rev);
|
|
void c_split(char *target,const char *s_str,vector<char*> &vec);
|
|
void cn_ask_file(tag_t dataset,char *ref_name,char **file_path);
|
|
extern "C" int POM_AM__set_application_bypass(logical bypass);
|
|
|
|
|
|
|