• 大小: 716KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-24
  • 语言: C/C++
  • 标签: VS2010  C++  Marshal  

资源简介

VS 2010 C++开发窗口应用程序,经常要在主控窗口和子窗口之间传递参数。而参数有时是非托管内存的变量或指针,必须在托管的窗口应用环境下面进行转换,稍有不慎就会造成全局内存泄漏。

资源截图

代码片段和文件信息

#include “stdafx.h“

using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;

//
// 有关程序集的常规信息通过下列特性集
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
//
[assembly:AssemblytitleAttribute(“example“)];
[assembly:AssemblyDescriptionAttribute(““)];
[assembly:AssemblyConfigurationAttribute(““)];
[assembly:AssemblyCompanyAttribute(“Microsoft“)];
[assembly:AssemblyProductAttribute(“example“)];
[assembly:AssemblyCopyrightAttribute(“Copyright (c) Microsoft 2018“)];
[assembly:AssemblyTrademarkAttribute(““)];
[assembly:AssemblyCultureAttribute(““)];

//
// 程序集的版本信息由下面四个值组成:
//
//      主版本
//      次版本
//      内部版本号
//      修订号
//
// 您可以指定所有值,也可使用“修订号”和“内部版本号”的默认值,
// 方法是按如下所示使用“*”:

[assembly:AssemblyVersionAttribute(“1.0.*“)];

[assembly:ComVisible(false)];

[assembly:CLSCompliantAttribute(true)];

[assembly:SecurityPermission(SecurityAction::RequestMinimum UnmanagedCode = true)];

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

     文件      65024  2018-09-19 11:44  example\Debug\example.exe

     文件       1677  2018-09-19 11:15  example\Debug\example.exe.metagen

     文件          0  2018-09-19 11:44  example\Debug\example.ilk

     文件     330752  2018-09-19 11:44  example\Debug\example.pdb

    .......      1078  2009-08-31 02:31  example\example\app.ico

     文件       2358  2018-09-18 17:15  example\example\app.rc

     文件       1171  2018-09-18 17:15  example\example\AssemblyInfo.cpp

     文件       3186  2018-09-19 11:44  example\example\Debug\.NETframeworkVersion=v4.0.AssemblyAttributes.obj

     文件       1204  2018-09-19 11:44  example\example\Debug\app.res

     文件       4999  2018-09-19 11:44  example\example\Debug\AssemblyInfo.obj

     文件       9728  2018-09-19 11:44  example\example\Debug\cl.command.1.tlog

     文件      11016  2018-09-19 11:44  example\example\Debug\CL.read.1.tlog

     文件       1586  2018-09-19 11:44  example\example\Debug\CL.read.2.tlog

     文件       2942  2018-09-19 11:44  example\example\Debug\CL.write.1.tlog

     文件       3138  2018-09-19 11:44  example\example\Debug\example.Build.CppClean.log

     文件        381  2018-09-19 11:44  example\example\Debug\example.exe.intermediate.manifest

     文件        180  2018-09-19 11:44  example\example\Debug\example.FormLogin.resources

     文件        180  2018-09-19 11:44  example\example\Debug\example.FormMain.resources

     文件         81  2018-09-19 11:44  example\example\Debug\example.lastbuildstate

     文件       6080  2018-09-19 11:44  example\example\Debug\example.log

     文件      42333  2018-09-19 11:44  example\example\Debug\example.obj

     文件    2883584  2018-09-19 11:44  example\example\Debug\example.pch

     文件        967  2018-09-19 11:44  example\example\Debug\example.vcxproj.GenerateResource.Cache

     文件          0  2018-09-19 11:44  example\example\Debug\example.write.1.tlog

     文件      17198  2018-09-19 11:44  example\example\Debug\FormLogin.obj

     文件          2  2018-09-19 11:44  example\example\Debug\link.8440-cvtres.read.1.tlog

     文件          2  2018-09-19 11:44  example\example\Debug\link.8440-cvtres.write.1.tlog

     文件          2  2018-09-19 11:44  example\example\Debug\link.8440.read.1.tlog

     文件          2  2018-09-19 11:44  example\example\Debug\link.8440.read.2.tlog

     文件          2  2018-09-19 11:44  example\example\Debug\link.8440.write.1.tlog

............此处省略39个文件信息

评论

共有 条评论