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

📄 managedmain.cpp

📁 C语言库函数的原型,有用的拿去
💻 CPP
字号:
/***
*ManagedMain.cpp - Initialization for Windows EXE using CRT DLL and managed entry point
*
*       Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
*       This is the startup routine for applications using the managed entry
*       point int __clrcall main(array<String^>^).
*       It calls the user's main routine after performing C Run-Time Library initialization.
*
*******************************************************************************/

#define _MANAGED_MAIN

#define WPRFLAG 1 /* Flag used by startup code to indicate wide strings */

#ifndef _UNICODE
#define _UNICODE 1
#endif  /* _UNICODE */

#ifndef UNICODE
#define UNICODE 1
#endif  /* UNICODE */

#undef _MBCS /* UNICODE not _MBCS */


#include "mcrtexe.cpp"

⌨️ 快捷键说明

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