<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Problem beim Compilieren auf 64Bit]]></title><description><![CDATA[<p>Hallo ich muss ein Programm auf 64Bit Compilieren und bekomme folgende fehler meldung. Ich muss dazu sagen das mein Wissen um C++ sehr begrenzt sind und ich eine schnelle Lösung brauche!</p>
<p>Vielen Dank!</p>
<pre><code class="language-cpp">//
//    WHFC A Fax Client for HylaFAX
//
//    Copyright (C) 2003 Ulrich Eckhardt 
//    written by Ulrich Eckhardt uli@uli-eckhardt.de
//
//    This program is free software; you can redistribute it and/or
//    modify it under the terms of the GNU General Public License as
//    published by the Free Software Foundation; either version 2 of
//    the License, or (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
//    General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program; if not, write to the Free Software
//    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
//
// JobTagList.h:
//
// A ListClass for storing assignments between the job-tag identifier
// character and a name for displaying in the Queue List.

#ifndef _JOB_TAG_LIST_H
#define _JOB_TAG_LIST_H

class JobTag
{
public:
	JobTag();
	JobTag&amp; operator=(JobTag &amp;l);
	operator CString() {return Text;};
	operator CString&amp;() {return Text;};
	operator LPCSTR() {return (LPCSTR)Text;};
	operator == (JobTag f) const 
	{
		return (identifier == f.identifier);
	};
	CString Text;
	char identifier;
	BYTE sort_type;
};

class JobTagList : public
	CList &lt; class JobTag, class JobTag &gt; 
{
	public:
		static void ParseJobFmtRessource(UINT queue,JobTagList *list);
};

#endif

FEHLER:
------ Build started: Project: Winhyla, Configuration: Debug x64 ------
Compiling...
StdAfx.cpp
 WINVER not defined. Defaulting to 0x0600 (Windows Vista)
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C2144: syntax error : 'const void' should be preceded by ';'
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C2059: syntax error : '{'
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C2334: unexpected token(s) preceding '{'; skipping apparent function body
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\WinhylaView.h(115) : warning C4244: '=' : conversion from 'UINT_PTR' to 'UINT', possible loss of data
Creating browse information file...
Microsoft Browse Information Maintenance Utility Version 9.00.21022
Copyright (C) Microsoft Corporation. All rights reserved.
BSCMAKE: error BK1506 : cannot open file '.\x64\Debug\DefaultModem.sbr': No such file or directory
Build log was saved at &quot;file://C:\Users\Administrator\Desktop\whfc-1.2.4_src\whfc_1.2\x64\Debug\BuildLog.htm&quot;
Winhyla - 5 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/261949/problem-beim-compilieren-auf-64bit</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 02:46:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/261949.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 26 Feb 2010 07:56:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem beim Compilieren auf 64Bit on Fri, 26 Feb 2010 07:56:35 GMT]]></title><description><![CDATA[<p>Hallo ich muss ein Programm auf 64Bit Compilieren und bekomme folgende fehler meldung. Ich muss dazu sagen das mein Wissen um C++ sehr begrenzt sind und ich eine schnelle Lösung brauche!</p>
<p>Vielen Dank!</p>
<pre><code class="language-cpp">//
//    WHFC A Fax Client for HylaFAX
//
//    Copyright (C) 2003 Ulrich Eckhardt 
//    written by Ulrich Eckhardt uli@uli-eckhardt.de
//
//    This program is free software; you can redistribute it and/or
//    modify it under the terms of the GNU General Public License as
//    published by the Free Software Foundation; either version 2 of
//    the License, or (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
//    General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program; if not, write to the Free Software
//    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
//
// JobTagList.h:
//
// A ListClass for storing assignments between the job-tag identifier
// character and a name for displaying in the Queue List.

#ifndef _JOB_TAG_LIST_H
#define _JOB_TAG_LIST_H

class JobTag
{
public:
	JobTag();
	JobTag&amp; operator=(JobTag &amp;l);
	operator CString() {return Text;};
	operator CString&amp;() {return Text;};
	operator LPCSTR() {return (LPCSTR)Text;};
	operator == (JobTag f) const 
	{
		return (identifier == f.identifier);
	};
	CString Text;
	char identifier;
	BYTE sort_type;
};

class JobTagList : public
	CList &lt; class JobTag, class JobTag &gt; 
{
	public:
		static void ParseJobFmtRessource(UINT queue,JobTagList *list);
};

#endif

FEHLER:
------ Build started: Project: Winhyla, Configuration: Debug x64 ------
Compiling...
StdAfx.cpp
 WINVER not defined. Defaulting to 0x0600 (Windows Vista)
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C2144: syntax error : 'const void' should be preceded by ';'
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C2059: syntax error : '{'
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\JobTagList.h(39) : error C2334: unexpected token(s) preceding '{'; skipping apparent function body
c:\users\administrator\desktop\whfc-1.2.4_src\whfc_1.2\WinhylaView.h(115) : warning C4244: '=' : conversion from 'UINT_PTR' to 'UINT', possible loss of data
Creating browse information file...
Microsoft Browse Information Maintenance Utility Version 9.00.21022
Copyright (C) Microsoft Corporation. All rights reserved.
BSCMAKE: error BK1506 : cannot open file '.\x64\Debug\DefaultModem.sbr': No such file or directory
Build log was saved at &quot;file://C:\Users\Administrator\Desktop\whfc-1.2.4_src\whfc_1.2\x64\Debug\BuildLog.htm&quot;
Winhyla - 5 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1861610</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1861610</guid><dc:creator><![CDATA[nn_coder]]></dc:creator><pubDate>Fri, 26 Feb 2010 07:56:35 GMT</pubDate></item><item><title><![CDATA[Reply to Problem beim Compilieren auf 64Bit on Fri, 26 Feb 2010 08:47:37 GMT]]></title><description><![CDATA[<p>Sieht nicht nach einem 64 bit Problem aus.</p>
<p>Gib dem hier nen Rueckgabewert:</p>
<pre><code class="language-cpp">operator == (JobTag f) const 
{ 
    return (identifier == f.identifier); 
};
</code></pre>
<p>Edit: Schon ewig kein C++ mehr gemacht.<br />
Edit #4: <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>So: bool operator == (JobTag f) const</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1861628</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1861628</guid><dc:creator><![CDATA[endline]]></dc:creator><pubDate>Fri, 26 Feb 2010 08:47:37 GMT</pubDate></item><item><title><![CDATA[Reply to Problem beim Compilieren auf 64Bit on Fri, 26 Feb 2010 09:14:37 GMT]]></title><description><![CDATA[<p>endline schrieb:</p>
<blockquote>
<p>Sieht nicht nach einem 64 bit Problem aus.</p>
<p>Gib dem hier nen Rueckgabewert:</p>
<p>So: bool operator == (JobTag f) const</p>
</blockquote>
<p>Kein Leerzeichen zwischen dem operator und dem ==:</p>
<pre><code class="language-cpp">bool operator== (JobTag f) const
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1861633</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1861633</guid><dc:creator><![CDATA[Blue-Tiger]]></dc:creator><pubDate>Fri, 26 Feb 2010 09:14:37 GMT</pubDate></item><item><title><![CDATA[Reply to Problem beim Compilieren auf 64Bit on Fri, 26 Feb 2010 11:33:37 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile-var-mode-is-viewprofile-and-u-is-1819.html" rel="nofollow">rüdiger</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-8.html" rel="nofollow">Rund um die Programmierung</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-15.html" rel="nofollow">C++</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39405.html" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1861700</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1861700</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Fri, 26 Feb 2010 11:33:37 GMT</pubDate></item></channel></rss>