⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cfgfiles.h

📁 JK Proxy Project - Version 0.1 ------------------------------ This was going to be a proxy serve
💻 H
字号:
/*
+-----------------------------------------------------------------------------+
|                                                                             |
|   cfgfiles.h                                                                |
|   Last change: yyyy-mm-dd                                                   |
|                                                                             |
|   Author: Jan Krumsiek                                                      |
|   eMail:  proxy@krumsiek.com                                                |
|   Web:    http://www.krumsiek.com/proxy                                     |
|                                                                             |
|   Copyright 2003 - Jan Krumsiek                                             |
|   This source code can freely be modified and redistributed. No liability   |
|   whatsoever is taken by the author for any use of this software.           |
|                                                                             |
|   Description:                                                              |                                                     |
|   Header file for cfgfiles.cpp. Contains declartion of COMMAND struct       |
|                                                                             |
+-----------------------------------------------------------------------------+
*/

#ifndef _cfgfiles_h_
#define _cfgfiles_h_

#include "proxymain.h"

// COMMAND struct -> one command in a config file
struct COMMAND {
	CHARPTR command;
	CHARPTR* paras;
	UINT c_paras;
	UINT line;
};

// prototypes for exported function
int OpenConfigFile(CHARPTR file);
void ReleaseConfigFile();
COMMAND GetNextFullCommand();
void ReleaseCommand(COMMAND* cmd);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -