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.
79 lines
2.0 KiB
79 lines
2.0 KiB
#pragma once
|
|
#include "epm_handler_common.h"
|
|
#include <tc\tc_macros.h>
|
|
#include <tc\emh.h>
|
|
#include <tc\preferences.h>
|
|
#include <property\propdesc.h>
|
|
#include <epm\epm.h>
|
|
#include <epm\epm_toolkit_tc_utils.h>
|
|
#include <tccore\item.h>
|
|
#include <tccore\grmtype.h>
|
|
#include <tccore\grm.h>
|
|
#include <tccore\imantype.h>
|
|
#include <sa\am.h>
|
|
#include <sa\sa.h>
|
|
#include <tccore\aom.h>
|
|
#include <tccore\aom_prop.h>
|
|
#include <property\prop_errors.h>
|
|
#include <tccore\workspaceobject.h>
|
|
#include <qry\qry.h>
|
|
#include <bom\bom_attr.h>
|
|
#include <bom\bom.h>
|
|
#include <epm\signoff.h>
|
|
#include <pom\pom\pom.h>
|
|
#include <pom\pom\pom_errors.h>
|
|
#include <fclasses\tc_date.h>
|
|
#include <epm\cr.h>
|
|
#include <cfm\cfm.h>
|
|
#include <sa\am.h>
|
|
#include "tc/envelope.h"
|
|
#include <stdio.h>
|
|
#include "ae/dataset.h"
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <iterator>
|
|
#include <map>
|
|
#include <vector>
|
|
#include "ce/ce.h"
|
|
#include <time.h>
|
|
#include <windows.h>
|
|
#include <iostream>
|
|
#include <sql.h>
|
|
#include <sqlext.h>
|
|
#include "string"
|
|
#include "sstream"
|
|
#include <sa/tcfile.h>
|
|
#include <tccore/aom.h>
|
|
#include <sa/tcfile_cache.h>
|
|
#include "ctime"
|
|
#include "tchar.h"
|
|
#include "ics/ics.h"
|
|
#include "ics/ics2.h"
|
|
#include <fstream>
|
|
#include <io.h>
|
|
#include <stdlib.h>
|
|
#using "./declib.dll"
|
|
|
|
using namespace std;
|
|
using namespace Testdll;
|
|
using namespace System;
|
|
extern "C" int POM_AM__set_application_bypass(logical bypass);
|
|
|
|
#ifdef WIN32
|
|
#define ACCESS(fileName,accessMode) _access(fileName,accessMode)
|
|
#define MKDIR(path) _mkdir(path)
|
|
#else
|
|
#define ACCESS(fileName,accessMode) access(fileName,accessMode)
|
|
#define MKDIR(path) mkdir(path,S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH)
|
|
#endif
|
|
|
|
string ConvertToString(System::String^ str);
|
|
System::String ^ convert_to_cstring(const char *p);
|
|
bool isTypeOf(tag_t objtag, const char * type_name);
|
|
void split(std::string s, const char* delim, std::vector<std::string>* ret);
|
|
string GbkToUtf8(const char *src_str);
|
|
string Utf8ToGbk(const char *src_str);
|
|
const wchar_t* stringToWchar(const std::string& str);
|
|
const char* newGUID(); |