From f24411386df57460477d50dcea47f62801f5900d Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Wed, 13 Mar 2024 10:24:18 +0800 Subject: [PATCH] add: gitignore and pub include header --- .gitignore | 28 ++++++++++++++++++++++++++++ omc/pub_include.h | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 .gitignore create mode 100644 omc/pub_include.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e9d429c --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# ---> VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ +.idea/ + +# Run temp file and dir +reference +omc/bin +omc/tools + +# Built Visual Studio Code Extensions +*.o +*.a +*.vsix +*.log +*.log-* +*.bak +*.bak* +*.exe +__debug_bin*.exe + diff --git a/omc/pub_include.h b/omc/pub_include.h new file mode 100644 index 0000000..1eaac8a --- /dev/null +++ b/omc/pub_include.h @@ -0,0 +1,39 @@ +////////////////////////////////////////////////// +//Title : pub_incudes.h +//Auhtor : Liu Wei +//Desc : public header includes +//Created : 2007-07-13 +//Revision : +// +//Revision : +// +////////////////////////////////////////////////// + + +#ifndef _PUB_INCLUDE_H_ +#define _PUB_INCLUDE_H_ + +#include "public.h" +#include "includes.h" +#include "pub_base.h" +#include "asn1.h" +#include "crypt.h" +#include "bisearch.h" +#include "pub_base.h" +#include "pub_debug.h" +#include "pub_log.h" +#include "pub_file.h" +#include "pub_list.h" +#include "pub_malloc.h" +#include "pub_fmt.h" +#include "pub_base.h" +#include "pub_time.h" +#include "pub_timer.h" +#include "pub_sys.h" +#include "pub_str.h" +#include "pub_inet.h" +#include "pub_wnet.h" +#include "pub_netcap.h" +#include "pub_sdp.h" + +#endif