Search:

Type: Posts; User: binks

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    6,603

    It's working great, thanks. (forgot to link at...

    It's working great, thanks. (forgot to link at first :))
  2. Replies
    13
    Views
    6,603

    Can a DLL write to a variable local to the...

    Can a DLL write to a variable local to the executable, or must it be global or something similar?
  3. Replies
    13
    Views
    6,603

    ohh! but if I use this for example: char...

    ohh! but if I use this for example:

    char urlDir[BUFSIZ] = "ftp://website.com/public_html/upload/";
    UploadFile("filename.txt", "newfilename.txt", urlDir, "usernameForServer", "passwordForServer");...
  4. Replies
    13
    Views
    6,603

    I personal will use literals in the program that...

    I personal will use literals in the program that uses the function. Won't it work the same as a variable would?

    Are you suggesting I won't be able to append to char * urlDir since it's a...
  5. Replies
    13
    Views
    6,603

    libCurl gives the option to rename a file once...

    libCurl gives the option to rename a file once it's uploaded. "newfilename.txt" is just that.

    I don't understand what you mean by literals? this is an example of how I would call the function in...
  6. Replies
    13
    Views
    6,603

    Ok, I'm making these changes as I type. Here...

    Ok, I'm making these changes as I type.

    Here is the way I call UploadFile.


    UploadFile("filename.txt", "newfilename.txt", "ftp://website.com/public_html/upload/", "usernameForServer",...
  7. Replies
    13
    Views
    6,603

    Pointers in function parameter

    Hello,

    I'm having a problem with my code where it crashes when trying to copy and append the parameter data to the variables used by the program. This problem is unrelated to libCurl which is...
Results 1 to 7 of 7