CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tuli

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    325

    Re: reading .pdb debug data

    Here's where the DIA is looking for the pdb file.




    But why not look in the local symbol store or _NT_PATH ?
    Probably because the developer explicitly forbids it...?
  2. Replies
    2
    Views
    325

    Re: reading .pdb debug data

    it would appear i am not the first or only one to have this problem:

    http://social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/3d877580-af6c-4012-8a77-c1903be865e5/

    Dear microsoft, if...
  3. Replies
    2
    Views
    325

    reading .pdb debug data

    Hi,

    I am trying to read debug data from a pdb file, specifically the debug data for windows system libraries such as kernel32.dll, where the .pdb was provided by the microsoft symbol store.

    I...
  4. MSIL .netmodule or module compiled with /GL found

    I get the following warning when linking against a custom static lib in a release build:



    Both the project and the static lib are compiled as release (\GL).



    So what could be the cause of...
  5. Replies
    3
    Views
    695

    Re: hardware ID for PC

    BroTip: HWIDs usually do more harm than good.

    People will be annoyed, to say the least, that they can run their legaly purchased software only one one of their PCs, while their friends happily...
  6. Microsoft Windows Debug API: enumerating PDB files

    *nvm, please delete* :(
  7. Replies
    5
    Views
    331

    Re: evaluating logical boolean expressions

    forgot that, sorry. :)

    Standard math/c++ set of expressions, i would say, ie:

    <,>,>=,<=,&&,||, nested brevets,*,+,-,/, etc.

    If i was to write my own parser, would you know of any "reference"...
  8. Replies
    5
    Views
    331

    evaluating logical boolean expressions

    hi,

    I am looking for a library to aid me in evaluating Boolean expressions.
    For example, i have an expression like this:


    (it can alos be much longer!)

    and would like to evaluate them to a...
  9. Replies
    3
    Views
    374

    Re: cin and unknown number of integers

    thanks. No, the input is done with a file, but...


    the file looks more like this:

    <header>:x y z,....

    where x,y,z are the integers.
    It may as well be
  10. Replies
    3
    Views
    374

    cin and unknown number of integers

    Hi,

    i dont usually write console programs, and i cant seem to find out how one parses an unknown number of arguments with cin.

    the program receives an unknown amount of integers in stdin, and i...
  11. Thread: what``s the algo?

    by tuli
    Replies
    3
    Views
    409

    Re: what``s the algo?

    indeed thanks. :)

    in an attempt of saving my honour: i figured it out myself yesterday night. ;)
  12. Thread: what``s the algo?

    by tuli
    Replies
    3
    Views
    409

    what``s the algo?

    Hi,

    Playing around with a couple of friends, doing riddles and stuff. Here`s one for you: What is the algo to these results from 0-255?
    It`s a honest question, i have no clue... :S
    ...
  13. Replies
    9
    Views
    1,890

    Re: application design

    Actually, i though i was admitting my failure to get it right in the first place...maybe that line should have been



    Thanks for the answer, though, i am in the middle of restructuring all this...
  14. Replies
    5
    Views
    468

    Re: prime chekcer doesnt work

    He knows it doesnt work, but he doesnt know what is wrong. No specific, unfortunately, and as i said, it looks OK to me. :/
  15. Replies
    5
    Views
    468

    prime chekcer doesnt work

    hi,

    A student approached me and asked why his prime checker wouldnt work. I took a look and it should work, imo, for all < 64 bit inputs.




    int isitprime(unsigned long long in)
    {...
  16. Replies
    9
    Views
    1,890

    Re: application design

    hi, and thanks for the replies.

    yes, that`s pretty much it.
    I tried to describe what kind of classes i have in my "Instance" in 2).
    Basically, one "Instance" holds a couple of storage class...
  17. Replies
    9
    Views
    1,890

    Re: application design

    But how?
    As i explained above, i need at least one global function to access the "instance" class instance. When i have two of them, i cant do that anymore.

    An alternative would be to pass an...
  18. Replies
    9
    Views
    1,890

    Re: application design

    hm, 100 views - no replies: there has to be a general problem to my approach. What is it?
  19. Replies
    9
    Views
    1,890

    application design

    Hi everyone,

    1)
    I have a larger project here. It mainly consists of one window and a set of classes. At runtime, the class instances have to know about each other, ie class instance A might...
  20. Thread: C: getchar

    by tuli
    Replies
    2
    Views
    489

    C: getchar

    hi,

    once again i hit a very simple problem i am unable to resolve. I using Visual Studio 2010, but am compiling for C.


    THis:

    char i=45;
    while(i=getchar() != EOF)
    {
  21. Replies
    5
    Views
    726

    Re: custom streambuf for use with std::fstream?

    Interesting.
    We have been using a sort of custom "restriction" wrapper class for encapsulating parts of streams, and i was about to propose that approach....but
    it looks like we can drop our code...
  22. Replies
    4
    Views
    619

    Re: dereferencing char pointers

    thanks.
    in that case, char should be unsigned by default, imo.
  23. Replies
    4
    Views
    619

    dereferencing char pointers

    hi,

    why doesnt the following program work as expected:



    char x = 0xff;
    char* y = &x;
    if(*y == 0xff)
    {
  24. Thread: [C] parsing EOF

    by tuli
    Replies
    1
    Views
    347

    [C] parsing EOF

    Hi,

    Someone came to me for help with a task. THat someone takes part in a very basic C course, and this is only their 1st day. The task left me clueless, anyways...
    Note that the required...
  25. Replies
    1
    Views
    378

    Re: error when using wmemcpy

    tmp[0] is a ptr to a constant, read-only string. You cant write to it. (and if you could, who guratnetess there`s enough free memory?).
    If you want a writable buffer you have to explicitly reserve...
Results 1 to 25 of 47
Page 1 of 2 1 2



HTML5 Development Center

Click Here to Expand Forum to Full Width