- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我终于有时间升级我的视频捕捉类(class)了。我想比较一下 VFW(到目前为止我一直在使用的)和 DirectShow。正如预期的那样,DirectShow 更快,但是当我添加信息文本时,AnsiString::sprint()
突然不再是 AnsiString
的成员。
经过一番努力,我找到了一个解决方法,因为 AnsiString::printf()
仍然有效,但我很好奇如何解决这个问题。也许 dshow.h
和 dstring.h
中的一些定义有冲突?
我砍掉了所有不必要的代码来显示这个问题:
//$$---- Form CPP ----
//---------------------------------------------------------------------------
#include <vcl.h>
#include <dshow.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
static int i=0;
Caption=AnsiString().sprintf("%i",i); // this does not work
AnsiString s; s.printf("%i",i); Caption=s; // this does work
i++;
}
//---------------------------------------------------------------------------
它只是一个简单的 VCL Form 应用程序,上面有一个 TTimer
。 TTimer
递增计数器 i
并将其输出到表单的 Caption
中。 DirectX 库甚至没有链接,只包含 header !
链接器输出错误:
[C++ Error] Unit1.cpp(20): E2316 'sprintf_instead_use_StringCbPrintfA_or_StringCchPrintfA' is not a member of 'AnsiString'
如果我交换 vcl.h
和 dshow.hincludes,编译器将在
dstring.h` 中停止在这一行:
AnsiString& __cdecl sprintf(const char* format, ...); // Returns *this
出现此错误消息:
[C++ Error] dstring.h(59): E2040 Declaration terminated incorrectly
因此,显然存在一些冲突(AnsiString
关键字是问题所在)。将 dshow.h
放入 namespace
也无济于事。
有没有人有任何线索?
Q1。如何解决这个问题?
Q2。到底是什么原因/在哪里造成的?
我能想到并且应该可行的唯一解决方案(但我想尽可能避免它)是创建一个OBJ(或DLL)使用 DirectShow 东西,然后将其链接到标准的 VCL 项目中,而不包含 dshow.h
,当然导出必须是也没有任何有趣的东西。
最佳答案
问题不在于 dshow.h
本身,但实际上与 strsafe.h
相反,哪个 dshow.h
默认包含。
strsafe.h
包含以下代码1:
#ifndef STRSAFE_NO_DEPRECATE
// Deprecate all of the unsafe functions to generate compiletime errors. If you do not want
// this then you can #define STRSAFE_NO_DEPRECATE before including this file
#ifdef DEPRECATE_SUPPORTED
...
#pragma deprecated(sprintf)
...
#else // DEPRECATE_SUPPORTED
...
#undef sprintf
#define sprintf sprintf_instead_use_StringCchPrintfA_or_StringCbPrintfA;
...
#endif // DEPRECATE_SUPPORTED
#endif // !STRSAFE_NO_DEPRECATE
1 有相似的#pragma
和 #define
许多其他已弃用的“不安全”C 函数的语句。
如果两者都是STRSAFE_NO_DEPRECATE
和 DEPRECATE_SUPPORTED
未定义(在这种情况下就是这种情况),使用 #define sprintf
导致所有对sprintf
的任何类型 的后续引用符号 被视为sprintf_instead_use_StringCchPrintfA_or_StringCbPrintfA;
在编译期间。
这就是您收到编译器错误的原因。当vcl.h
包含在 strsafe.h
之前, dstring.h
首先包含在内,因此编译器会看到 AnsiString::sprintf()
的正确声明方法,然后是 strsafe.h
在编译器看到您的 Unit1.h
之前被包含(大概是 Timer1Timer()
)代码,所以你调用 AnsiString().sprint("%i",i)
实际上是想调用AnsiString().sprintf_instead_use_StringCchPrintfA_or_StringCbPrintfA;("%i",i)
, 失败了。
当你交换 vcl.h
时和 dshow.h
包括 #define sprintf
strsafe.h
中的声明在 dstring.h
之前得到处理包含在内,因此编译器会看到以下关于 AnsiString::sprintf()
的声明dstring.h
中的方法失败了:
AnsiString& __cdecl sprintf_instead_use_StringCchPrintfA_or_StringCbPrintfA;(const char* format, ...); // Returns *this
要防止这种行为,您可以使用 #undef sprintf
#include <dshow.h>
之后的声明,就像 JeffRSon 建议的那样。但是,正确 的解决方案是定义 STRSAFE_NO_DEPRECATE
之前#include <strsafe.h>
.您可以通过以下任一方式做到这一点:
添加 #define STRSAFE_NO_DEPRECATE
在 #include <dshow.h>
之前的代码声明
添加 STRSAFE_NO_DEPRECATE
到项目选项中的条件列表。
此解决方案在 MSDN 上有描述:
When you include Strsafe.h in your file, the older functions replaced by the Strsafe.h functions will be deprecated. Attempts to use these older functions will result in a compiler error telling you to use the newer functions. If you want to override this behavior, include the following statement before including Strsafe.h.
#define STRSAFE_NO_DEPRECATE
To allow only character count functions, include the following statement before including Strsafe.h.
#define STRSAFE_NO_CB_FUNCTIONS
To allow only byte count functions, include the following statement before including Strsafe.h.
#define STRSAFE_NO_CCH_FUNCTIONS
另一个支持的解决方案是定义 NO_DSHOW_STRSAFE
之前#include <dshow.h>
这样它就不会包括strsafe.h
多亏了 dshow.h
中的这段代码:
#ifndef NO_DSHOW_STRSAFE
#define NO_SHLWAPI_STRFCNS
#include <strsafe.h>
#endif
关于c++ - 包括 DShow.h 会破坏 BDS2006 上的 VCL AnsiString::sprintf(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40000171/
我正在尝试完成撤消/重做。我正在使用loadFromJSON(...)从我存储在数组中的 Canvas 状态重新构建 Canvas 。基本上,我的想法是破坏现有的 Canvas 并重新构建 Canva
在某些情况下,我有一个在 iframe 中打开的网页。当它被加载到那个 iframe 中时,我需要它将窗口位置设置为资源以下载文件(所有这些都是为了更新 GreaseMonkey 脚本......所有
当我创建 Intent 时: Intent in = new Intent(this, myclass.class); this.startActivity(in); 我创建了一个新的 Intent
我正在我本地版本的 Wordpress 网站上为 Wordpress 创建新的短代码。 在 functions.php 中,我添加了例如: function shortTest() { re
我正在为机械网站制作 JavaScript 闪卡游戏。因为我想将方程写在卡片上,所以我需要使用 delta(Δ) 符号。 一张卡片可能有:一侧是“功率方程”,另一侧是“P=W/Δt”。如果卡片从第一面
我编写了以下代码: document.addEventListener("DOMContentLoaded", ()=>{ let menu = document.querySelector(
我的浏览器同步工作正常,但我仍然很难处理之前的 html 的缓存。即使选中了 Chrome 的“禁用缓存”,甚至在隐身模式下也是如此! 要加载页面更改,我总是必须“清除缓存并硬重新加载”。 我想知道,
我注意到每次打开和关闭(通过单击菜单项或单击菜单外的某个区域)时,上下文菜单 ( Ext.menu.Menu ) s 不会从 DOM 中删除,它们只是以某种方式变得不可见。 如何改变这个? 最佳答案
给定依赖记录类型: Record FinPath : Type := mkPath { fp_head : S i; fp_tail
在 Husdon/Jenkins 中,我可以在构建被破坏时设置通知,以向进行破坏构建的 checkin 的用户发送电子邮件。如何在 Teamcity 中执行此操作? 我知道个人用户可以通过 Teamc
我注意到每次打开和关闭(通过单击菜单项或单击菜单外的某个区域)时,上下文菜单 ( Ext.menu.Menu ) s 不会从 DOM 中删除,它们只是以某种方式变得不可见。 如何改变这个? 最佳答案
使用 MIMEMultipart('alternative') 发送 html 和 pain-text 时 将 html 转换为文本时,html 的 anchor 换行 http://127.0.0.
每当我的应用程序最小化时,我都会启动一个服务,该服务向我的 HTTP 服务器发送拉取请求以检查通知,当应用程序恢复时,服务将被终止(以及计划的可运行项)。一切正常,直到我决定终止该应用程序(将其从正在
我意识到该框架处于 alpha 阶段,但正在实现 jQuery Mobile破坏了我的omniauth 身份验证。当我尝试登录时,一旦我尝试点击/auth/twitter Controller ,jQ
我对 Angular 比较陌生,经过几个小时的调试,我发现添加 jquery 时存在一些不兼容性。该指令在没有 jquery 的情况下工作正常,但在使用 jquery 时会中断:/ 这是一个 plnk
我发现,因为我正在处理的所有表单都有一个包含“name =“submit””属性的提交按钮,所以当我单击应该触发表单提交的链接时,触发器提交会中断. 有谁知道我该如何解决这个问题。 下面的 JQuer
我遇到了一个问题:/我得到了一个 CSS 东西,它使悬停时背景位置发生变化。但是当我在 javascript 中运行一个改变悬停的函数后,CSS 停止工作。 这是函数: function tree()
谁能给出一个完整的例子来说明 qooxdoo 1.6 中的 dispose 和 destruct 是如何工作的? ,我在 qooxdoo 演示或文档中找不到任何好的示例。 谢谢你的建议。 最佳答案 处
我对 JFormattedTextField 有疑问(我将它用作我们所有文本字段的基类)。 今天我尝试向该字段的文档添加一个文档过滤器,它工作得很好,但前提是它没有设置格式化程序工厂。 问题是,当设置
我有一个点击事件 $('#ship_Move').click(function (event) { event.stopPropagation();
我是一名优秀的程序员,十分优秀!