Search:

Type: Posts; User: FlyingIsFun1217

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    19
    Views
    3,390

    Perfect, that was the clarification I needed. ...

    Perfect, that was the clarification I needed.

    FlyingIsFun1217
  2. Replies
    19
    Views
    3,390

    Interesting; I was under the presumption that...

    Interesting; I was under the presumption that .lib files were static libraries compiled by MSVC, and gcc only accepted .a libraries.

    Learn something new every day.

    Thanks again!
  3. Replies
    19
    Views
    3,390

    Yeah, and that's kind of what I was afraid of....

    Yeah, and that's kind of what I was afraid of. Bonjour provides a .lib library, but I'll have to find some way to use it within gcc, since it's meant for MSVC. Honestly, if MSVC had as simple of a...
  4. Replies
    19
    Views
    3,390

    Alright, I've read a bit on it, and at least for...

    Alright, I've read a bit on it, and at least for me, it's a bit of a confusing topic (methods of working at a low assembly level?), but I've added what seems necessary to me to my code:


    static...
  5. Replies
    19
    Views
    3,390

    Thank you, the perfect reference I was looking...

    Thank you, the perfect reference I was looking for.

    I'll review it, hopefully learn something, and dare I say, return with any more problems.

    FlyingIsFun1217
  6. Replies
    19
    Views
    3,390

    My tiny little self-taught brain is starting to...

    My tiny little self-taught brain is starting to lose track of things. What is going on with the typedef? I've never seen one with parameters (?), as if it were defining the void type or something.
    ...
  7. Replies
    19
    Views
    3,390

    Well, it's linking into Apple's DNS-SD library,...

    Well, it's linking into Apple's DNS-SD library, which is quite complex, so I'll spare you the pain of scrolling through it. It can be found here though, if you'd like to look at it, the only changes...
  8. Replies
    19
    Views
    3,390

    Ask and your wish shall be granted #include...

    Ask and your wish shall be granted


    #include "dns_sd.h"
    #include <stdio.h>
    #include <string.h>

    void HandleEvents(DNSServiceRef)
    {
    //Placeholder
  9. Replies
    19
    Views
    3,390

    Well, it went from understandable to...

    Well, it went from understandable to mind(mine)-boggling:

    Changed the code, here's what I get now:



    God I hate trying to work with Bonjour.

    FlyingIsFun1217
  10. Replies
    19
    Views
    3,390

    Looks like it took a set of unwary eyes to spot...

    Looks like it took a set of unwary eyes to spot that; thanks :)

    FlyingIsFun1217
  11. Replies
    19
    Views
    3,390

    Error converting to same format?

    Here's my latest compilation error:



    Maybe I'm crazy, but they're the exact same thing, what's the problem?

    FlyingIsFun1217
  12. Replies
    1
    Views
    4,818

    I've added a ! defined(__MINGW32__) to the elif,...

    I've added a ! defined(__MINGW32__) to the elif, that has solved compilation. Then again, I haven't yet tried to use any of the dns_sd.h code with my own, so I can't be terribly sure if it'll...
  13. Replies
    1
    Views
    4,818

    Type definition issues?

    Hey,

    I'm attempting to use Apple's DNS-SD library in an application of mine. At this point, I'm just trying to compile dns_sd.h in my project without errors to set up for usage later. When I go to...
  14. Replies
    5
    Views
    1,988

    Well, don't I just feel retarded now? Thanks!...

    Well, don't I just feel retarded now?

    Thanks!
    FlyingIsFun1217
  15. Replies
    5
    Views
    1,988

    Well, I tried that, but all I got was a return of...

    Well, I tried that, but all I got was a return of the full number of characters in the string, not just the periods.

    Why would it count every character?

    Thanks!
    FlyingIsFun1217
  16. Replies
    5
    Views
    1,988

    Finding Number of Chars in String?

    Hi

    I've got the following, which is supposed to allow for finding the number of characters in a string, and return that amount +1:



    int function(string databaseDays)
    {
    int...
  17. Replies
    5
    Views
    1,143

    Thanks again! Something I love about the...

    Thanks again! Something I love about the community here, always seems to be willing to help.

    FlyingIsFun1217
  18. Replies
    5
    Views
    1,143

    Sweet! What is the term for this? I wouldn't mind...

    Sweet! What is the term for this? I wouldn't mind reading up on it more.

    Thanks!
  19. Replies
    5
    Views
    1,143

    Class instance within another class?

    Hey

    I have a somewhat interesting situation / question. Let's say I had a class that was meant for database manipulation with the following code:



    #include <iostream>

    using namespace std;
  20. Replies
    10
    Views
    8,860

    Interesting... so it would be fine had it been...

    Interesting... so it would be fine had it been designed that way/the compiler was made to support that? Seems like one of those things that should have been done.

    FlyingIsFun1217
  21. Replies
    10
    Views
    8,860

    But isn't it being initialized when it goes to...

    But isn't it being initialized when it goes to compile the private class variables? Or does that only serve as a 'pointer' for future reference (in the code), and it's actually initialized when first...
  22. Replies
    10
    Views
    8,860

    Alright, but... why can't you set the value in...

    Alright, but... why can't you set the value in the constructor in a class? Seems kinda stupid, I'm hoping I'm missing something bigger here...

    FlyingIsFun1217
  23. Replies
    10
    Views
    8,860

    Bool initialization in class

    Hey!

    I've got a class with a private bool isScanning, and I'm trying to set it to false when initializing it in the class:



    class blah
    {
    public:
    function1();
  24. Replies
    23
    Views
    2,950

    I didn't say to expect to create anything when...

    I didn't say to expect to create anything when jumping in over your head, I simply said that doing that for me 'forced' (and by forced, I mean ticked me off, and MADE me learn why I was screwing up)...
  25. Thread: opengl

    by FlyingIsFun1217
    Replies
    3
    Views
    1,111

    But don't worry about the API; the core of it is...

    But don't worry about the API; the core of it is consistent amongst manufacturers.

    FlyingIsFun1217
Results 1 to 25 of 118
Page 1 of 5 1 2 3 4