User boost - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T07:53:16Zhttp://stackoverflow.com/feeds/user/426http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/885994/how-do-you-get-vb6-to-initialize-doubles-with-infinity-infinity-and-nan2How do you get VB6 to initialize doubles with +infinity, -infinity and NaN?boost2009-05-20T03:18:39Z2009-12-05T03:56:41Z
<p>VB6 doesn't appear to make it that easy to store +infinity, -infinity and NaN into double vars. It would help if it could so that I could do comparisons with those values in the context of complex numbers. How?</p>
http://stackoverflow.com/questions/464358/lost-precision-on-gmp-mpfadd-where-have-my-digits-gone0Lost precision on GMP mpf_add. Where have my digits gone?boost2009-01-21T07:40:22Z2009-11-28T17:55:25Z
<p>I'm summing two negative floats:</p>
<pre><code>char * lhs = "-2234.6016114467412141";
char * rhs = "-4939600281397002.2812";
</code></pre>
<p>According to Perl, using bignum and Math::BigFloat, the answer is</p>
<pre><code>-4939600281399236.8828114467412141
</code></pre>
<p>However, according to GMP, using the code below, the answer is</p>
<pre><code>-4939600281399236.88281
</code></pre>
<p>Where have I gone wrong? What happened to the remaining "14467412141"?</p>
<pre><code>#include "stdafx.h"
#include "gmp-static\gmp.h"
#include <stdlib.h> /* For _MAX_PATH definition */
#include <stdio.h>
#include <malloc.h>
#include <math.h>
#define F(x) mpf_t x; mpf_init( x );
void main(void)
{
F(f_lhs);
F(f_rhs);
F(f_res);
char * resbuff;
mp_exp_t exp;
char * lhs = "-2234.6016114467412141";
char * rhs = "-4939600281397002.2812";
int validOp = mpf_set_str( f_lhs, lhs, 10 );
validOp = mpf_set_str( f_rhs, rhs, 10 );
mpf_add( f_res, f_lhs, f_rhs );
resbuff = mpf_get_str( NULL, &exp, 10, 0, f_res );
printf( "Using mpf_add, %s + %s = %s (exp=%d)\n", lhs, rhs, resbuff, exp );
free(resbuff);
}
</code></pre>
<p>Sample output:</p>
<pre><code>Using mpf_add, -2234.6016114467412141 + -4939600281397002.2812 = -493960028139923688281 (exp=16)
</code></pre>
<p><em>P.S.</em> I have tried adding a call to <code>mpf_set_default_prec</code> with larger than 64 (the default) values, but to no effect. </p>
http://stackoverflow.com/questions/1510365/getting-a-directory-tree-with-jabaco0Getting a directory tree with Jabaco?boost2009-10-02T15:47:28Z2009-11-10T08:29:26Z
<p>Given that <a href="http://www.jabaco.org/" rel="nofollow">Jabaco</a> is VB-alike on the surface but Java underneath, can any suggest how to get a directory tree? I think it's got something to do with DirSearch() but as I have no background in Java, I can't think how.</p>
http://stackoverflow.com/questions/1510365/getting-a-directory-tree-with-jabaco/1706387#17063870Answer by boost for Getting a directory tree with Jabaco?boost2009-11-10T08:29:26Z2009-11-10T08:29:26Z<p>The Jabaco folk and I are <a href="http://www.jabaco.org/board/p1460-what-the-jabaco-equiv-for-dir-and-getattr.html#post1460" rel="nofollow">getting there</a></p>
http://stackoverflow.com/questions/1141523/writing-for-fastcgi-in-vb60Writing for FastCGI in VB6?boost2009-07-17T05:26:51Z2009-11-09T01:47:08Z
<p>While I'm busy here reading the <a href="http://www.fastcgi.com/drupal/node/6?q=node/22" rel="nofollow">FastCGI</a> documentation (yeah, reading the 'friendly' manual), does anyone know whether anyone has had any success writing FastCGI apps in VB6?</p>
<p>Starting to get close to finding a solution myself at Coast Research and Development's <a href="http://www.coastrd.com/" rel="nofollow">FastCGI Dll Library (with SIGTERM handler) for Windows Web Servers</a></p>
http://stackoverflow.com/questions/1141523/writing-for-fastcgi-in-vb6/1698719#16987190Answer by boost for Writing for FastCGI in VB6?boost2009-11-09T01:47:08Z2009-11-09T01:47:08Z<p><a href="http://www.coastrd.com" rel="nofollow">Coast Research and Development</a> have brought out a VB6 specific version of their FastCGI library.</p>
http://stackoverflow.com/questions/553755/idl-odl-midl-dlls-but-not-com-if-i-can-help-it0IDL, ODL, MIDL, DLLs but not COM if I can help it.boost2009-02-16T15:50:56Z2009-11-08T13:15:56Z
<p>Using <a href="http://www.powervb.com/" rel="nofollow">Matt Curland</a>'s Type Library Editor, I wrote a Typelib for Nick Yakowlew's <a href="http://chsdet.sourceforge.net" rel="nofollow"><code>Charset Detector Library</code></a>. This is a standard DLL (written in Delphi as it happens) and not a COM DLL at all.</p>
<p>Up until this point I had been building ODL and thus TLB files "by hand". The benefit of this was that I could get Intellisense working in Visual Studio 6 (esp. VB6) and also be able to pass widestrings to DLLs without said strings being mangled into ANSI in the process. Once I had generated the TLB from the ODL using MIDL, I had but to register the TLB using <code>regtlib</code>, add a reference to that typelib in VB6 and cut code. And once the binary had been built, I didn't need to have the typelib around. </p>
<p>The typelib made by Curland's tool seems to work a little differently. It forces me to have the typelib registered for the binary to access the DLL. I exported the TLB to IDL and, well it looks a bit different to the ODL I've been writing. For one thing, there are typedefs and structs and enums. Okay, I put those in there via Curland's TLE and they need to remain. But I don't want to have to register the TLB -- I want to do things the old way.</p>
<p>So what do I do to the IDL below, to make it the kind of ODL I'm familiar with, yet maintain the functionality, all without needing the TLB to be registered once the binary has been produced?</p>
<pre><code>// Generated .IDL file (by the OLE/COM Object Viewer)
//
// typelib filename: chsdet.tlb
[
uuid(316A83D7-8BF4-490E-BDDE-75EBC332C355),
version(1.0),
helpstring("Charset Detector - as the name says - is a stand alone executable module for automatic charset detection of a given text.\r\n\t\r\nIt can be useful for internationalisation support in multilingual applications such as web-script editors or Unicode editors.\r\n\t\r\nGiven input buffer will be analysed to guess used encoding. The result can be used as control parameter for charset conversation procedure.\r\n\t\r\nCharset Detector can be compiled (and hopefully used) for MS Windows (as dll - dynamic link library) or Linux.\r\n\t\r\nBased on Mozilla's i18n component - http://www.mozilla.org/projects/intl/. \r\n\r\nCharset Detector is open source project and distributed under Lesser GPL.\r\nSee the GNU Lesser General Public License for more details - http://www.opensource.org/licenses/lgpl-license.php\r\n\r\nNikolaj Yakowlew \xFFFFFFA9 2006-2008 \r\nTypeLib by Bruce M. Axtens, 2008.")
]
library CHSDET
{
// TLib : // Forward declare all types defined in this typelib
[
dllname("CHSDET.dll"),
version(1.0),
helpstring("Functions in CHSDET.DLL")
]
module CHSDETFunctions {
[entry(0x60000000), helpstring("Returns rAbout record (qv)")]
void _stdcall GetAbout([in, out] rAbout* AboutRec);
[entry(0x60000001), helpstring("Reset detector. Prepares for new analysis.")]
void _stdcall Reset();
[entry(0x60000002), helpstring("Analyse given buffer of specified length.
Return value is of eHandleDataErrors, either
NS_ERROR_OUT_OF_MEMORY (Unable to create internal objects) or NS_OK.
Function can be called more that one time to continue guessing. Charset Detector remembers last state until Reset called.")]
void _stdcall HandleData(
[in] BSTR aBuf,
[in] short aLen,
[out, retval] short* retVal);
[entry(0x60000003), helpstring("Returns either TRUE (Charset Detector is sure about text encoding.) or FALSE.
NB: If input buffer is smaller then 1K, Charset Detector returns FALSE.")]
void _stdcall IsDone([out, retval] short* retVal);
[entry(0x60000004), helpstring("Signal data end. If Charset Detector hasn't sure result (IsDone = FALSE) the best guessed encoding will be set as result.")]
void _stdcall DataEnd();
[entry(0x60000005), helpstring("Returns guessed charset as rCharsetInfo record")]
void _stdcall GetDetectedCharset([out, retval] rCharsetInfo* retVal);
[entry(0x60000006), helpstring("Returns all supported charsets in form "0x0A Name - CodePage"")]
void _stdcall GetKnownCharsets(
[in, out] long* sList,
[out, retval] long* retVal);
[entry(0x60000007), helpstring("Return eBOMKind value matching byte order mark (if any) of input data.")]
void _stdcall GetDetectedBOM([out, retval] eBOMKind* retVal);
[entry(0x60000008), helpstring("Remove CodePage from consideration as a possible match")]
void _stdcall DisableCharsetCP([in] long CodePage);
};
typedef [uuid(91694067-30AB-44A9-A210-F5602935475F)]
struct tagrAbout {
long lMajor;
long lMinor;
long lRelease;
long sAbout;
} rAbout;
typedef [uuid(3C8B7420-D40B-458B-8DE8-9B3D28607396)]
enum {
BOM_Not_Found = 0,
BOM_UCS4_BE = 1,
BOM_UCS4_LE = 2,
BOM_UCS4_2143 = 3,
BOM_UCS4_3412 = 4,
BOM_UTF16_BE = 5,
BOM_UTF16_LE = 6,
BOM_UTF8 = 7
} eBOMKind;
typedef [uuid(9B231DEF-93FB-440D-B06B-D760AECE09D0)]
struct tagrCharsetInfo {
long Name;
short CodePage;
long Language;
} rCharsetInfo;
typedef enum {
NS_OK = 0,
NS_ERROR_OUT_OF_MEMORY = -2147024882
} eHandleDataErrors;
};
</code></pre>
http://stackoverflow.com/questions/1605034/is-there-a-programmatic-interface-to-myob-data-files0Is there a programmatic interface to MYOB data files?boost2009-10-22T04:35:40Z2009-11-06T03:48:05Z
<p>All I want to do is figure out what the date range of the data is. At present I have to open the file in MYOB, convert it to the v18.5 format, check it for consistency, and then run a report so that I can visually check the date range. I'd prefer something a little less labour intensive. Any ideas?</p>
http://stackoverflow.com/questions/199612/how-do-i-create-a-variant-array-of-bstr-in-euphoria-using-eucom1How do I create a variant array of BSTR in Euphoria using EuCOM?boost2008-10-14T00:47:02Z2009-11-04T18:43:49Z
<p>So far I've figured out how to pass Unicode strings, bSTRs, to and from a Euphoria DLL using a Typelib. What I can't figure out, thus far, is how to create and pass back an array of BSTRs.</p>
<p>The code I have thus far (along with <code>include</code>s for EuCOM itself and parts of Win32lib):</p>
<pre><code>global function REALARR()
sequence seq
atom psa
atom var
seq = { "cat","cow","wolverine" }
psa = create_safearray( seq, VT_BSTR )
make_variant( var, VT_ARRAY + VT_BSTR, psa )
return var
end function
</code></pre>
<p>Part of the typelib is:</p>
<pre><code> [
helpstring("get an array of strings"),
entry("REALARR")
]
void __stdcall REALARR( [out,retval] VARIANT* res );
</code></pre>
<p>And the test code, in VB6 is:</p>
<pre><code>...
Dim v() as String
V = REALARR()
...
</code></pre>
<p>So far all I've managed to get is an error '0' from the DLL. Any ideas? Anyone?</p>
http://stackoverflow.com/questions/195794/how-to-initialise-a-rather-complex-char-array-in-c0How to initialise a rather complex char array in C?boost2008-10-12T18:10:01Z2009-11-03T16:40:26Z
<p>Assuming Visual C/C++ 6, I have a complex data structure of 22399 elements that looks like this:</p>
<pre><code>{
{ "(SAME", "AS", "U+4E18)", "HILLOCK", "OR", "MOUND"},
{ "TO", "LICK;", {1, 1, 0}, "TASTE,", "A", "MAT,", "BAMBOO", "BARK"},
{ "(J)", "NON-STANDARD", "FORM", "OF", "U+559C", ",", {1, 1, 0}, "LIKE,", "LOVE,", "ENJOY;", {1, 1, 4}, "JOYFUL", "THING"},
{ "(AN", "ANCIENT", {1, 2, 2}, {1, 2, 3}, "U+4E94)", "FIVE"},
...
}
</code></pre>
<p>What's the best way to declare this? I've tried things like </p>
<pre><code>char * abbrevs3[22399][] = { ... };
</code></pre>
<p>and </p>
<pre><code>char * abbrevs3[22399][][] = { ... };
</code></pre>
<p>but the compile whinges something chronic. </p>
<p><strong>EDIT</strong>: The data is a database of descriptions of certain Unihan characters. I've been exploring various ways of compacting the data. As it stands you have 22399 entries, each of which may contain a varying number of strings, or triplets of { abbrev marker, line where last seen, element of that line where last seen }. </p>
<p>By the way Greg's talking, I may need to have each line contain the same number of elements, even if some of them are empty strings. Is that the case?</p>
<p><strong>EDIT #2</strong>: And it occurs to me that some of the numeric values in the triplets are way outside the limits of char.</p>
http://stackoverflow.com/questions/1624841/could-java-be-used-to-write-a-win32-system-service2Could Java be used to write a Win32 System Service?boost2009-10-26T13:37:35Z2009-10-26T13:56:19Z
<p>The title sort of sums it up. I was thinking of using <a href="http://www.jabaco.org" rel="nofollow">Jabaco</a> seeing as it makes .EXEs (as well as .jar files), and I'm more familiar with VB syntax than with Java.</p>
http://stackoverflow.com/questions/1623566/problem-building-gd-on-ubuntu-jaunty0problem building GD on Ubuntu 'Jaunty'boost2009-10-26T07:58:28Z2009-10-26T08:15:43Z
<p>I'm having trouble building gdlib. As far as I can tell, zlib, png and all the rest are installed in either /lib or /usr/lib. It does not seem to matter whether I use <code>--prefix</code> or one or all of the <code>--with-</code>, the configure script keeps on insisting that it can't find any of the supporting libraries.</p>
<pre><code>** Configuration summary for gd 2.0.34:
Support for PNG library: no
Support for JPEG library: no
Support for Freetype 2.x library: no
Support for Fontconfig library: no
Support for Xpm library: no
Support for pthreads: yes
</code></pre>
<p>[EDIT]
Now I've noticed that <code>libpthread</code> was found. Hunting around the disk I find <code>libpthread.so</code>. What I don't find is <code>libpng.so</code>. What I do find is <code>/usr/lib/libpng12.so.0</code>. So what's this zero on the end? Is this why Gd's configure isn't working? What do I do about this?</p>
<p>This is all because <a href="http://www.concrete5.org/" rel="nofollow">Concrete5</a>'s installer is telling me it can't find GD.</p>
http://stackoverflow.com/questions/1617925/how-do-two-android-applications-talk-to-each-other/1618185#16181850Answer by boost for How do two android applications talk to each other?boost2009-10-24T14:51:59Z2009-10-24T14:51:59Z<p>I'd suggest <a href="http://www.winksaville.com/blog/programming/android-ipc-aidl/comment-page-1/" rel="nofollow">Android – IPC, aidl and IBinder</a> and <a href="http://www.embeddeddesignindia.co.in/ART%5F8800575654%5F2800005%5FTA%5F9be59b3e.HTM" rel="nofollow">Grasping Android's IPC mechanism</a> for a start. After that just hunt on Google for 'Android IPC'</p>
http://stackoverflow.com/questions/1550755/visual-basic-for-applications-learning-resources/1550990#15509901Answer by boost for Visual Basic (for Applications) Learning Resourcesboost2009-10-11T15:44:18Z2009-10-11T15:44:18Z<p><a href="http://visualbasic.about.com/od/learnvba/Learn%5Fto%5Fprogram%5Fusing%5FVisual%5FBasic%5Ffor%5FApplications%5FVBA.htm" rel="nofollow">About.com</a> often has good stuff.</p>
<p>After that maybe some <a href="http://www.your-save-time-and-improve-quality-technologies-online-resource.com/free-vba-tutorials.html" rel="nofollow">Free VBA Tutorials</a></p>
http://stackoverflow.com/questions/1550950/detect-chinese-multibyte-character-in-the-string/1550957#15509570Answer by boost for Detect chinese (multibyte) character in the stringboost2009-10-11T15:30:43Z2009-10-11T15:30:43Z<p>Is PHP storing this as Unicode? If so, at worst you could step through the string, character by character, until you hit those within the Chinese range.</p>
<p>Check this out too <a href="http://php.net/manual/en/book.unicode.php" rel="nofollow">PHP: Unicode - Manual</a></p>
http://stackoverflow.com/questions/1535111/how-to-emulate-an-arm-architecture-under-osx-10-6-snow-leopard/1535232#15352321Answer by boost for How to emulate an ARM architecture under OSX 10.6 ("Snow Leopard")?boost2009-10-08T02:02:04Z2009-10-08T02:02:04Z<p>Could start with <a href="http://www.goitexpert.com/general/arm-emulation-with-qemu/" rel="nofollow">ARM Emulation With QEMU</a> using Q, the Mac port of <a href="http://www.qemu.org/download.html" rel="nofollow">QEMU</a>.</p>
http://stackoverflow.com/questions/1535143/where-is-a-tutorial-for-using-xml-with-delphi/1535210#15352105Answer by boost for Where is a tutorial for using XML with Delphi?boost2009-10-08T01:54:55Z2009-10-08T01:54:55Z<p>See <a href="http://delphi.about.com/od/windowsshellapi/a/xml%5Fdelphi.htm" rel="nofollow">Creating, Parsing and Manipulating XML Documents with Delphi</a></p>
http://stackoverflow.com/questions/623660/a-good-uncertainty-interval-arithmetic-library3A good uncertainty (interval) arithmetic library?boost2009-03-08T14:25:36Z2009-09-23T13:27:14Z
<p><em>edited</em> </p>
<p>Given that the words "uncertain" and "uncertainty" are fairly ubiquitous, it's hard to Google "uncertainty arithmetic" and get anything immediately helpful. Thus, can anyone suggest a good library of routines, in almost any programming/scripting language, that implements handling of uncertain values, as per this description:</p>
<blockquote>
<p>Use uncertainty arithmetic to record values that are approximations, for which there is a measured tolerance. This is when we are unsure about a value, but know the upper and lower bounds it can have, expressed as a ±value. </p>
</blockquote>
http://stackoverflow.com/questions/851997/what-is-your-opinion-on-the-falcon-language/1453644#14536441Answer by boost for What is your opinion on the Falcon language?boost2009-09-21T09:37:07Z2009-09-21T09:49:00Z<p>I've downloaded it. It's powerful, flexible, Unicode-aware, and in use in real-world situations, namely as the scripting language for <a href="http://www.auroraux.net/index.php/Main%5FPage" rel="nofollow">AuroraUX</a>.</p>
<blockquote>
<p>Falcon is our scripting language of choice. "Simple, fast and powerful programming language, easy to learn and to feel comfortable with, and a scripting engine ready to empower mission-critical multithreaded applications." -- <a href="http://www.auroraux.org/index.php/AuroraUX%3AAbout" rel="nofollow">http://www.auroraux.org/index.php/AuroraUX%3AAbout</a></p>
</blockquote>
<p>Speaking of Unicode, this is a real Falcon script:</p>
<pre><code>// International class; name and street
class 国際( なまえ, Straße )
// set class name and street address
नाम = なまえ
شَارِع = Straße
// Say who am I!
function 言え!()
>@"I am $(self.नाम) from ",self.شَارِع
end
end
// all the people of the world!
民族 = [ 国際( "高田 Friederich", "台湾" ),
国際( "Smith Σωκράτης", "Cantù" ),
国際( "Stanisław Lec", "południow" ) ]
for garçon in 民族: garçon.言え!()
</code></pre>
http://stackoverflow.com/questions/1303788/how-do-i-programmatically-change-workstations-ip-address1How do I programmatically change workstation's ip address?boost2009-08-20T03:27:19Z2009-08-20T03:49:47Z
<p>There's probably some nice way of doing it (in Windows XP) in VBScript (or some other scripting language) with registry tweaks. Anyone know how?</p>
http://stackoverflow.com/questions/1297558/interrogating-outlook-across-a-peer-to-peer-network0Interrogating Outlook across a peer-to-peer network?boost2009-08-19T02:32:11Z2009-08-20T02:29:43Z
<p>Eventually we may have Active Directory in place but until then, is there any way I can interrogate a user's Outlook across the network and find out, for instance, what PST and OST files they are connected to?</p>
http://stackoverflow.com/questions/1297558/interrogating-outlook-across-a-peer-to-peer-network/1303662#13036620Answer by boost for Interrogating Outlook across a peer-to-peer network?boost2009-08-20T02:29:43Z2009-08-20T02:29:43Z<p>See the answer by @mmcg to <a href="http://serverfault.com/questions/55893/how-do-i-find-out-what-pst-files-users-have-attached-to-their-outlook-accounts">the same question posted on ServerFault</a></p>
http://stackoverflow.com/questions/1159956/how-to-convert-powerbasic-types-to-vb6-types0How to convert PowerBASIC Types to VB6 Types?boost2009-07-21T15:29:49Z2009-07-30T11:15:49Z
<p>These types come from the demos for <a href="http://www.coastrd.com/Home" rel="nofollow">FastCGI Dll Library (with SIGTERM handler) for Windows Web Servers</a> and are written in PowerBASIC. I'm trying to convert them to VB6 (having also discovered how to <a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=49776&lngWId=1" rel="nofollow">call a CDECL DLL from VB6</a>).</p>
<pre><code> ' Structures
TYPE FCGX_STREAM
pData AS DWORD ' Pointer to the first byte of data
LenStored AS DWORD ' Bytes Total data stored - up to 4.2GB
Capacity AS DWORD ' Bytes Total available - up to 4.2GB
CurPos AS DWORD ' Current Position within the buffer of the next byte to read, as an offset from pData
Reserved AS STRING*12 ' Opaque Variables
END TYPE ' 28 bytes
TYPE FCGX_REQUEST
Version AS LONG ' Dll Version Number * 1000 = %FCGI_VERSION
ReqCount AS LONG ' Request Counter
Role AS LONG ' FastCGI Role
ConnFlags AS LONG ' Connection flags - zero = application closes connection after responding
ReqMethod AS LONG ' Request HTTP Method - Code 1 - 8
ContLen AS LONG ' CONTENT_LENGTH - Length of POST data sent (in the pInStream Data String)
pzQuery AS ASCIIZ PTR ' Pointer to ASCIIZ (Null Terminated) QUERY_STRING (Values Only) - Always a valid pointer
nParam AS LONG ' Number of Request Params in the array
envp AS DWORD PTR ' Pointer to Array of Request Parameters
pIn AS FCGX_STREAM PTR ' Pointer to a String Builder object
pOut AS FCGX_STREAM PTR ' Pointer to a String Builder object
pErr AS FCGX_STREAM PTR ' Pointer to a String Builder object
pzLastErr AS ASCIIZ PTR ' Pointer to ASCIIZ String containing Last Error description
Reserved AS STRING*108 ' Opaque Variables
END TYPE ' 160 bytes
</code></pre>
<p>My problem is in comprehending how to get at the information stored in <code>ASCIIZ PTR</code>, <code>FCGX_STREAM PTR</code> and <code>DWORD PTR</code> items.</p>
http://stackoverflow.com/questions/1162962/php-cgi-exe-does-it-detect-and-handle-both-cgi-and-fastcgi-if-so-how0php-cgi.exe - does it detect and handle both CGI and FastCGI? If so, how?boost2009-07-22T03:44:51Z2009-07-22T19:08:36Z
<p>The impression I get both from Microsoft's discussions about <a href="http://learn.iis.net/page.aspx/248/configuring-fastcgi-extension-for-iis-60/" rel="nofollow">FastCGI and PHP</a>, and also from <a href="http://www.coastrd.com/iis-web-server" rel="nofollow">Coast R&D's site</a>, is that php-cgi.exe is able to detect whether it is being used in either a CGI or FastCGI context. If so, how does it do it, as I'd like to have similar functionality in my own product.</p>
http://stackoverflow.com/questions/173460/mingw-library-converted-to-windows-library-gives-odd-link-in-vc60MinGW library converted to Windows library gives odd link in VC++6boost2008-10-06T07:24:17Z2009-07-21T02:17:02Z
<p>I used the MinGW <code>.a</code> to Windows <code>.lib</code> transformation process as detailed in a
thread on the gmp-discuss list, as below (acting against a library created with --disable-shared --enable-static.) </p>
<pre><code>cp libgmp.a gmp.a
ranlib gmp.a
mv gmp.a gmp.lib
</code></pre>
<p>I now have a <code>.lib</code> file against which VC++6 seems to have no difficulty linking. What concerns me now is warning messages I'm getting from the link phase:</p>
<pre><code>LINK : warning LNK4049: locally defined symbol "___mb_cur_max" imported
LINK : warning LNK4049: locally defined symbol "__pctype" imported
LINK : warning LNK4049: locally defined symbol "__iob" imported
</code></pre>
<p>At this point in the proceedings these make no difference to the running of
my DLL (which wraps certain GMP functionality). But is that good enough?
Will having these three symbols from <code>libgmp.a</code> linked in to my Windows DLL
end up biting me later on? </p>
http://stackoverflow.com/questions/173460/mingw-library-converted-to-windows-library-gives-odd-link-in-vc6/1156994#11569940Answer by boost for MinGW library converted to Windows library gives odd link in VC++6boost2009-07-21T02:17:02Z2009-07-21T02:17:02Z<p>Someone else had a similar problem and <a href="http://opensees.berkeley.edu/community/viewtopic.php?t=2267" rel="nofollow">the fix</a> was relatively simple.</p>
http://stackoverflow.com/questions/1150214/tool-for-converting-c-header-files-h-to-vb0Tool for converting C header files (.h) to VB?boost2009-07-19T16:10:08Z2009-07-19T18:31:03Z
<p>I can see that there are tools for converting .h to Python, Perl, D, Pascal etc. Are there any for VB6 or any other VB-alike tool (like <a href="http://jabaco.org" rel="nofollow">Jabaco</a> for instance)?</p>
http://stackoverflow.com/questions/1124750/is-this-a-bug-in-gmp-4-1-2-or-is-it-something-im-doing-wrong0Is this a bug in GMP 4.1.2 or is it something I'm doing wrong?boost2009-07-14T11:15:41Z2009-07-14T12:34:35Z
<p>To this bit of code I pass the string <code>"kellogs special k"</code> and I get <code>1</code> which means that the string is an integer. What on earth am I doing wrong? Or is it a GMP problem? </p>
<pre><code>#define F(x) mpf_t (x); mpf_init( (x) );
long __stdcall FBIGISINTEGER(BSTR p1) {
USES_CONVERSION;
F(n1);
LPSTR sNum1 = W2A( p1 );
mpf_set_str( n1, sNum1, 10 );
return mpf_integer_p( n1 );
}
</code></pre>
<p>By the way, if anyone's going to suggest using a more recent GMP, please can you give me the web address of the static LIB for Windows. TIA.</p>
http://stackoverflow.com/questions/1113167/can-one-know-how-large-a-factorial-would-be-before-calculating-it1Can one know how large a factorial would be before calculating it?boost2009-07-11T07:35:08Z2009-07-11T08:13:17Z
<p>I'm using GMP to calculate very large factorials (e.g. 234234!). Is there any way of knowing, before one does the calculation, how many digits long the result will (or might) be?</p>
http://stackoverflow.com/questions/1097688/send-apple-event-from-windows0Send Apple Event from Windows?boost2009-07-08T12:11:24Z2009-07-08T12:48:29Z
<p>My son has a MacOS 9 box to which he is sending remote AppleEvents from his Leopard-based MacBook. Is there any way, programmatically, that I can send remote AppleEvents via TCP/IP from my Windows 7 Toshiba?</p>
http://stackoverflow.com/questions/1605034/is-there-a-programmatic-interface-to-myob-data-files/1685296#1685296Comment by boost on Is there a programmatic interface to MYOB data files?boost2009-11-09T03:20:07Z2009-11-09T03:20:07ZAnd ouch, doesn't it cost!http://stackoverflow.com/questions/199612/how-do-i-create-a-variant-array-of-bstr-in-euphoria-using-eucom/1675812#1675812Comment by boost on How do I create a variant array of BSTR in Euphoria using EuCOM?boost2009-11-05T02:28:34Z2009-11-05T02:28:34ZThanks, Matt, I've give it a go. http://stackoverflow.com/questions/1623566/problem-building-gd-on-ubuntu-jauntyComment by boost on problem building GD on Ubuntu 'Jaunty'boost2009-10-27T04:36:27Z2009-10-27T04:36:27ZIt also helped to install the -dev versions of the various libraries.http://stackoverflow.com/questions/1623566/problem-building-gd-on-ubuntu-jaunty/1623618#1623618Comment by boost on problem building GD on Ubuntu 'Jaunty'boost2009-10-27T01:15:31Z2009-10-27T01:15:31ZIsn't it 'ln -s thing linktothing'? Anyway, I figured it out and it works at treat. Thanks!http://stackoverflow.com/questions/1624841/could-java-be-used-to-write-a-win32-system-serviceComment by boost on Could Java be used to write a Win32 System Service?boost2009-10-26T15:59:16Z2009-10-26T15:59:16ZPartly because I don't know VB.Net, partly because I want to get to know Jabaco, and partly masochism ...http://stackoverflow.com/questions/1617925/how-do-two-android-applications-talk-to-each-other/1618185#1618185Comment by boost on How do two android applications talk to each other?boost2009-10-25T15:02:32Z2009-10-25T15:02:32ZOh dear, how embarrassing. Sorry (blush).http://stackoverflow.com/questions/885994/how-do-you-get-vb6-to-initialize-doubles-with-infinity-infinity-and-nan/886022#886022Comment by boost on How do you get VB6 to initialize doubles with +infinity, -infinity and NaN?boost2009-10-14T01:43:30Z2009-10-14T01:43:30ZI'm not sure whether to laugh or be embarrassed.http://stackoverflow.com/questions/1535111/how-to-emulate-an-arm-architecture-under-osx-10-6-snow-leopard/1535232#1535232Comment by boost on How to emulate an ARM architecture under OSX 10.6 ("Snow Leopard")?boost2009-10-11T15:14:51Z2009-10-11T15:14:51ZOops (blush) ... sigh.http://stackoverflow.com/questions/1376964/vb6-error-propagationComment by boost on VB6 error propagationboost2009-09-04T02:52:52Z2009-09-04T02:52:52Zplease post your own code (or some of it at least) which demonstrates the question. http://stackoverflow.com/questions/1303788/how-do-i-programmatically-change-workstations-ip-address/1303846#1303846Comment by boost on How do I programmatically change workstation's ip address?boost2009-08-20T04:07:46Z2009-08-20T04:07:46ZWow, that's impressive. And, hey, I'm not going to turn my nose up that that just because it's using batch commands.http://stackoverflow.com/questions/1303788/how-do-i-programmatically-change-workstations-ip-addressComment by boost on How do I programmatically change workstation's ip address?boost2009-08-20T03:38:18Z2009-08-20T03:38:18ZA mix of static and dynamic. http://stackoverflow.com/questions/174240/writing-a-language-for-the-windows-scripting-host-wsh/174256#174256Comment by boost on Writing a language for the Windows Scripting Host (WSH)boost2009-08-18T14:11:58Z2009-08-18T14:11:58ZYes. Exactly that. http://stackoverflow.com/questions/1150214/tool-for-converting-c-header-files-h-to-vb/1150522#1150522Comment by boost on Tool for converting C header files (.h) to VB?boost2009-07-23T04:57:21Z2009-07-23T04:57:21ZYes, I've heard about TXL. Pretty steep learning curve, however. Thanks.http://stackoverflow.com/questions/1162962/php-cgi-exe-does-it-detect-and-handle-both-cgi-and-fastcgi-if-so-how/1167499#1167499Comment by boost on php-cgi.exe - does it detect and handle both CGI and FastCGI? If so, how?boost2009-07-23T01:35:57Z2009-07-23T01:35:57ZD'oh! (blush) should've thought o' that, it being open source 'n' all.http://stackoverflow.com/questions/1150214/tool-for-converting-c-header-files-h-to-vbComment by boost on Tool for converting C header files (.h) to VB?boost2009-07-19T17:13:45Z2009-07-19T17:13:45ZEquivalence is all I'm after. The project is to make a framework for doing FastCGI in VB6. Yes, insanity runs in the family.