• 大小: 10KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-22
  • 语言: 其他
  • 标签: SecretView  密码  查看  

资源简介

SecretView星号密码查看器,仅能查看一般软件明文星号密码。内附源码,仅供大家学习交流。

资源截图

代码片段和文件信息

// SecretView.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “SecretView.h“
#include “SecretViewDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSecretViewApp

BEGIN_MESSAGE_MAP(CSecretViewApp CWinApp)
//{{AFX_MSG_MAP(CSecretViewApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSecretViewApp construction

CSecretViewApp::CSecretViewApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CSecretViewApp object

CSecretViewApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CSecretViewApp initialization

BOOL CSecretViewApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CSecretViewDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1078  2010-09-19 11:44  SecretView\res\SecretView.ico

     文件        402  2010-09-19 11:44  SecretView\res\SecretView.rc2

     文件        734  2010-09-19 15:30  SecretView\resource.h

     文件       2119  2010-09-19 11:44  SecretView\SecretView.cpp

     文件       4128  2010-09-19 13:47  SecretView\SecretView.dsp

     文件        528  2010-09-19 11:44  SecretView\SecretView.dsw

     文件       1368  2010-09-19 11:44  SecretView\SecretView.h

     文件       5470  2010-09-19 15:55  SecretView\SecretView.rc

     文件       6100  2010-10-03 11:17  SecretView\SecretViewDlg.cpp

     文件       1455  2010-09-19 15:55  SecretView\SecretViewDlg.h

     文件        212  2010-09-19 11:44  SecretView\StdAfx.cpp

     文件       1054  2010-09-19 11:44  SecretView\StdAfx.h

     目录          0  2010-10-03 11:53  SecretView\res

     目录          0  2010-10-03 11:55  SecretView

----------- ---------  ---------- -----  ----

                24648                    14


评论

共有 条评论