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

📄 argx.h

📁 这是一个编辑器 这是一个编辑器
💻 H
字号:

/*****************************************************************************

  ArgX.h
  ------

  Makes the "__getmainargs" routine and by this way the well-known "argc" and
  "argv" variables accessible without using the "main" EntryPoint in VC.

  Note:
  Don't forget to include msvcrt.lib (release) or msvcrtd.lib (debug) if it
  isn't already present in the library list.

  by yoda

  WWW:      y0da.cjb.net
  E-mail:   LordPE@gmx.net

  You are allowed to use this class in your own projects if you keep this
  trademark.

*****************************************************************************/

#ifndef __ArgX_h__
#define __ArgX_h__

#include <windows.h>

#ifdef __cplusplus
extern "C"
{
#endif // __cplusplus

void getmainargs(int *pargc, char ***pargv, char ***envp);

#ifdef __cplusplus
}
#endif // __cplusplus

#endif // __ArgX_h__

⌨️ 快捷键说明

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