@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14



Comments:

<0> the SF mayor ignored the law and was allowing it for awhile
<1> they've just become legal here NoideaWRK
<0> until he got smacked and all the marriages were invalidated.
<0> where yyparse?
<2> hmm
<2> i could have sworn all californians were gay
<3> do you help with compiler problems? (function being exported as a different name to what I give it)
<2> strange
<2> extern "C"?
<1> UK
<1> hence elton john got "married" a couple of weeks ago
<2> yeah, Solamente and JBlitzen bought their tickets when it became legal
<2> don't tell them that the licenses won't be legal here in the states
<2> they have their hopes up so high
<3> extern "C" _declspec(dllexport) int __stdcall Test(HWND,HWND,char *data,char*,BOOL,BOOL)
<3> being exported as Test@24



<2> GetProcAddress(..., "Test") should find it
<1> the headlines in our most famous tabloid newspaper said "Elton takes David up the Aisle"
<3> maybe.. but I didn't code the application I'm trying to use the dll in and I have no source code so I can't use that
<2> how is it importing?
<3> no idea
<3> it works fine if I p*** Test@24 as the name of the function to call, but I want to use Test
<2> what are you using to load and execute the function?
<3> it's for an IRC client with a scripting language (mIRC).. I use this; //echo -a $dll(test.dll,Test,testing)
<3> test.dll being the dll, Test being the function name, testing being the data in *data (inside the dll)
<2> must it be stdcall?
<4> yeah
<4> make a .def file or whatever
<4> EXPORTS Test = Test@24
<4> then you can use Test in mirc
<5> or post to #toronto
<3> I don't mind having to do that but I didn't have to before on my old pc, I was thinking there might've been an option I'd missed somewhere
<4> i'm staring at a dll I made for mirc once, that's what I did
<2> doing what rdragon said with the def file will essentially export another symbol with the same entry point as Test@24
<2> which will work as desired
<3> mm the compiler or the IDE is overwriting the .def before compiling
<2> overwriting how?
<3> I write Test Test@24 in the file and it removes that line so only EXPORTS and Test@24 @1 are left in the file
<4> it's 2 lines
<4> EXPORTS
<4> Test = Test@24
<3> yeah I have that
<2> just Test would do it
<2> Test @1 if you want to ***ign it an ordinal
<2> are you checking the exports with dumpbin or depends?
<2> what is modifying the file though?
<3> if I click on Build in MingW Developer Studio (IDE) the file is rewritten and the dll compiled
<2> ah, i'm not familiar with MingW
<3> I'm just reading the docs on .def files now to see if I'm doing something wronfg
<3> wrong*
<2> also, never mind what i said earlier, GetProcAddress wouldn't find it either without renaming the export via def
<6> guys, it's my first meeting with MFC and I don't know how else to get the text from a messegebox other than with GetDlgItemText()
<6> how can I do that under MFC
<6> I'm helping a friend with some homework
<2> there's that whole DDX abortion, but i'd stick to GetDlgItemText personally
<6> :))
<2> from a messagebox? or edit control?
<6> sorry
<6> edit control
<6> I'm a lil sleepy
<7> anyone know what lib is needed for CrtDbgReportW function ?
<2> sk8ing, probably something like: CWnd* editControl = GetDlgItem(IDC_EDIT); if (editControl) editControl->GetWindowText(someCString);
<2> but i haven't used MFC in nigh 6 years now
<6> it ****s
<6> I'll use GetDlgItemText, tho
<2> Cloud99, a debug CRT
<6> anyhow I've seen for the first time in my life a c++ book written in my country
<6> and everything looks like this:
<2> oh right you're romanian
<6> #include <iostream.h>
<2> i forget
<6> #include <conio.h>
<6> :))
<2> you speak english too well
<2> you need to romanian it up a little
<6> I do? :P



<6> :))
<2> well, if they started translating the book in 97, that sounds about right
<6> new books!
<2> doh!
<6> and the amazing part is that all the books this guy showed me use the same sintax :)
<2> scary stuff
<6> so everybody thinks it's ok
<2> well, apparently a lot of universities in the US still teach C++ that badly
<6> I've heard only good things about the US univeristies
<8> all over the world near as I can tell
<2> time to order dinner methinks
<2> going with room service tonight because i'm lazy like a mofo
<9> hello, what's the best p2p program now that kazaa is defunked?
<7> http://www.noidea128.org/sourcefiles/15797.html <-- I am getting a weird linker error, not sure what i need to include to get rid of it
<4> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt__crtdbgreport.asp
<2> the likely cause is you're building with DEBUG defined in preprocessor, but linking in the release CRT
<7> hmm
<10> which is tricky to do if you're using the IDE
<7> vs2005 baby
<7> can't go wrong with that
<7> i am trying to port a vs6 project to vs8
<10> Cloud99 vc2005 express is what you have
<2> could be it didn't upgrade correctly, and for that file the runtime library setting is wrong
<10> and I've done what you're doing before, it's non trivial
<10> LOTS of stupid "replace in all files" things you'll be doing, iirc
<7> i am thinking of just creating an empty project and adding files one by one to it
<10> vc2005 doesn't have the "update your project" feature? tsk tsk
<2> it will upgrade 6 projects, but that's the area of most bugs from upgrades
<7> it does
<10> peterhu I guess we've been lucky then... and wrote pretty straightforward code before
<11> hey wiggies?
<11> uggies
<11> azriel in here?
<11> n/m
<11> ne1 know any good AI books?
<7> Necromancer
<7> :)
<7> err Neuromancer
<12> pfloyd345: http://www.google.com/search?hl=en&q=AI+OR+artificial+intelligence+site%3Apaulgraham.com
<12> http://www.norvig.com/paip.html
<13> hey guys.. got a problem with this code
<13> http://www.noidea128.org/sourcefiles/15798.html
<13> it seg faults when calloc is called in the initColoring function. i have no idea why!
<13> line 85
<13> its C, not C++ hope thats ok
<11> I liked that book
<11> so lisp is the language for AI?
<11> they are recommending ANSI Common Lisp
<11> ..book
<11> ok yeah, I'll learn Lisp and then get back into Electronics
<11> gonna get paid and have funds to not work after a few years working
<14> actually Prolog I think
<14> and Lisp
<15> y2
<11> hey
<15> hey
<11> man, I had such a bad headache today, I was sure that I was on the verge of a fever
<11> what you up 2?
<15> just got home
<11> cool, me 2 kinda
<15> about to go have dinner
<11> ok IBRB2
<12> As for LISP, it's kind of a useful language for a lot of things.
<12> It's so popular in AI circles, though, that's it's known now as an "AI language"
<7> what is intermidiate.manifest file ?
<14> context?
<16> hey, may I ask, how many of you first learnt C and than C++?
<17> I "learned" C first, but I haven't learnt either of them.
<12> I did, and I regret it every day.
<12> However, there was no C++ when I started learning, so I didn't have a choice.
<7> i am trying to build a project using vs2005 - express and it generated project.dll.intermediate.manifest
<16> and why is that
<7> what is this manifest ?
<12> There's no reason to start with C if you can start with C++.


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #c++
or
Go to some related logs:

#c
#chatzone
leelu undernet
#AllNiteCafe
#chatzone
ikbal bangalore
movsx assembler
#c++
campulung mold
jottinger



Home  |  disclaimer  |  contact  |  submit quotes