Search:

Type: Posts; User: cyreon

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    2,126

    Yup, thats what I was considering using. But I...

    Yup, thats what I was considering using. But I was hoping I could find something like a delegate (or some other class I was unaware of that would allow a similar functionality in regards to using...
  2. Replies
    2
    Views
    3,479

    You can look into the BitConverter class and its...

    You can look into the BitConverter class and its methods, for converting specific numbers of bits might just mean bitshifting values in order to obtain the appropriate information before passing it...
  3. Replies
    3
    Views
    2,126

    Problem with language conversion ... lol

    Fairly new to C# programming, but very familiar with C and decent with C++. I am in the processing of making an attempt to convert an old C & C++ library over to the new language, but having some...
  4. Replies
    21
    Views
    3,780

    Ontario is a Canadian province and CA is actually...

    Ontario is a Canadian province and CA is actually Canada. So yes there are a lot of Canadians here ;) Though I don't know of an Ontario in California, it could exist.
  5. Replies
    21
    Views
    3,780

    Thanks for pointing that out grumpy, good thing...

    Thanks for pointing that out grumpy, good thing too since I was planning on actually using it now that I was aware of its existence.
  6. Replies
    34
    Views
    5,084

    I believe if you go back and read what all of us...

    I believe if you go back and read what all of us have suggested, probably for the first time since you asked your original question, you will answer that for yourself.
  7. Replies
    21
    Views
    3,780

    I haven't used this before myself, however, I...

    I haven't used this before myself, however, I just came across an interesting function provided in the malloc.h header. You can check it out here: _msize. By passing this function a pointer from an...
  8. Replies
    5
    Views
    1,475

    Salem, thanks once again. Sebastiani, lol......

    Salem, thanks once again.

    Sebastiani, lol... not entirely. This isn't a true memory manager, though it does provide some features that assist with memory management of sorts. Mainly intended to...
  9. Replies
    5
    Views
    1,475

    Thanks Salem. I realize that calling malloc from...

    Thanks Salem. I realize that calling malloc from multiple sources isn't an issue, but in terms of libraries a program includes the code before compile time only once. Would it be safe to assume...
  10. Replies
    34
    Views
    5,084

    Also using (int)strlen(str) for the condition of...

    Also using (int)strlen(str) for the condition of a loop statement is also unwise, it forces the program to do this calculation on each pass of the loop.. increasing the processing resources/time...
  11. Replies
    5
    Views
    1,475

    Programming library with built in manager

    Hey guys,

    I have a quick question, but I feel I need to explain things in a bit of detail prior to the actual question. My next project is going to be requiring the use of a memory manager of...
  12. Thanks both of you. Tabstop ya I said my work...

    Thanks both of you.
    Tabstop ya I said my work with pointers sucked. I went back and read, and now that realization might actually help me out a lot, so I guess I was trying to get the address of...
  13. Structures, Pointer Elements, and Dereferencing

    I'm having an issue determining the appropriate dereferencing method to get the address of a pointer contained inside of a structure. Pointers were never my strong point. The structure might look...
  14. Replies
    2
    Views
    2,951

    Its already done but, everytime (whether I try to...

    Its already done but, everytime (whether I try to add it manually or not) it attempts to add "../../debug/dynacgi.lib" and fails. I am simply troubleshooting the issue by attempting various methods...
  15. Replies
    10
    Views
    3,516

    From the sounds of a quick read, though I could...

    From the sounds of a quick read, though I could be wrong since I've never used this type of tree myself, sounds like items along the tree are being organized based on string characters starting from...
  16. Replies
    2
    Views
    2,951

    Linker problem... no idea

    I'm using VC2008, and currently my linker options look as follows under Properties:



    /OUT:"C:\Documents and Settings\scott\My Documents\Visual Studio 2008\Projects\DynaTem\Debug\DTC.cgi" ...
  17. Replies
    2
    Views
    1,424

    Oh I must be tired, I was thinking that it was...

    Oh I must be tired, I was thinking that it was called Iter->second() like a method instead of Iter->second... oi. Thanks.
  18. Replies
    2
    Views
    1,424

    Maps and Function Pointers

    Using something along the lines of:



    typedef int (*CBACK)(int,DWORD);
    map<int,CBACK> CBFuncs;
    // developer calls provided functions to add required callback function pointers to
    // map, as...
  19. Replies
    8
    Views
    4,886

    Okay to rephrase, not all members are pointers...

    Okay to rephrase, not all members are pointers such that some are simple data members (such as a DWORD, int, etc.) that signifies specific things to the class itself. Though the items to be...
  20. Replies
    8
    Views
    4,886

    This question seems to have opened up a...

    This question seems to have opened up a discussion, thanks for all of your input. I'm not sure if perhaps I am doing things wrong, but in the case of construction failure I do end up calling the...
  21. Replies
    8
    Views
    4,886

    Class Constructor error handling

    Is there any good resources to show the possible methods one could use in order to better handle errors that may occur during the class constructor call?

    I know of the throw() and catch() method...
  22. Replies
    22
    Views
    2,475

    Perfect. I guess I was so wrapped up in my own...

    Perfect. I guess I was so wrapped up in my own concept idea, it didn't even occur to me to take my own defines out of the equation. Thanks again :)
  23. Replies
    22
    Views
    2,475

    Actually since I am seeking technically a map...

    Actually since I am seeking technically a map between one definition to another (both of which are number based, even though they technically use different mathematical bases) I think a map would do...
  24. Replies
    22
    Views
    2,475

    Elysia, I realize that WndProc() doesn't work in...

    Elysia,
    I realize that WndProc() doesn't work in C++, it doesn't work in C either. Its a psuedo/code mix just to display what I was attempting to do, in actuality it should look like LRESULT...
  25. Replies
    22
    Views
    2,475

    I think there is going to be no easy way to...

    I think there is going to be no easy way to complete this project, at least in the method that I wanted to.

    The purpose of the conversion from UINT to string, then back to UINT was simply for...
Results 1 to 25 of 66
Page 1 of 3 1 2 3