|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
无意中发现了!
@小甲鱼 @迷雾少年 @康小泡 @拈花小仙 @~风介~ @百日维新 @小人 (排名不分先后)
源代码:
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- #include "stdafx.h"
- #include "sal.h"
- /////////////////////////////////////////////////////////////////////////////
- // Standard WinMain implementation
- // Can be replaced as long as 'AfxWinInit' is called first
- int AFXAPI AfxWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
- _In_ LPTSTR lpCmdLine, int nCmdShow)
- {
- ASSERT(hPrevInstance == NULL);
- int nReturnCode = -1;
- CWinThread* pThread = AfxGetThread();
- CWinApp* pApp = AfxGetApp();
- // AFX internal initialization
- if (!AfxWinInit(hInstance, hPrevInstance, lpCmdLine, nCmdShow))
- goto InitFailure;
- // App global initializations (rare)
- if (pApp != NULL && !pApp->InitApplication())
- goto InitFailure;
- // Perform specific initializations
- if (!pThread->InitInstance())
- {
- if (pThread->m_pMainWnd != NULL)
- {
- TRACE(traceAppMsg, 0, "Warning: Destroying non-NULL m_pMainWnd\n");
- pThread->m_pMainWnd->DestroyWindow();
- }
- nReturnCode = pThread->ExitInstance();
- goto InitFailure;
- }
- nReturnCode = pThread->Run();
- InitFailure:
- #ifdef _DEBUG
- // Check for missing AfxLockTempMap calls
- if (AfxGetModuleThreadState()->m_nTempMapLock != 0)
- {
- TRACE(traceAppMsg, 0, "Warning: Temp map lock count non-zero (%ld).\n",
- AfxGetModuleThreadState()->m_nTempMapLock);
- }
- AfxLockTempMaps();
- AfxUnlockTempMaps(-1);
- #endif
- AfxWinTerm();
- return nReturnCode;
- }
复制代码 |
评分
-
参与人数 2 | 荣誉 +10 |
鱼币 +10 |
贡献 +5 |
收起
理由
|
百日维新
| + 5 |
+ 5 |
|
热爱鱼C^_^ |
康小泡
| + 5 |
+ 5 |
+ 5 |
热爱鱼C^_^ |
查看全部评分
|