Search:

Type: Posts; User: DampfHans

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    10,829

    alternative to strcat/strncat

    hey guys,

    i want to use a string which includes a path to a folder several times for linking to different files that shall be copied. The path might change from machine to machine and the user is...
  2. Replies
    7
    Views
    8,915

    I get the string D:\FOLDER\ from the...

    I get the string


    D:\FOLDER\

    from the ASCII file using



    FILE * pFile;
  3. Replies
    7
    Views
    8,915

    LoadLibrary with variable path

    hey guys.

    I have the following problem.

    I am using


    hinstlib = LoadLibrary(L"D:\\FOLDER\\Function.dll");

    and
  4. Replies
    2
    Views
    4,425

    Well then intention is to send the input- and...

    Well then intention is to send the input- and outputarrays


    double dll1_in_array1[101]; //an array for both input and output
    double dll1_out_array1[101]; //und for each function ...
  5. Replies
    2
    Views
    4,425

    call DLL function from another DLL

    Hey guys,

    my little programm doesn't seem to work - I assume it is caused by a mistake in the function declaration respectivly calling the function...

    The sitation is as follows:

    A Programm...
  6. Replies
    2
    Views
    1,054

    Correct, i think, the most important thing is the...

    Correct, i think, the most important thing is the the 2nd dll function is called only every 10 steps.

    Directly accessing dll2 with at rate of 0.1s caused return values - switchin to 0.01s returned...
  7. Replies
    2
    Views
    1,054

    time-shifted calling of DLLs

    Hey folks,

    i have issues calling 2 dlls (DLL1 + DLL2) from another DLL (EXPORT).

    The situation is:

    The main DLL "Export" calls 2 other DLLs within its function.

    You can set a...
  8. Replies
    13
    Views
    7,344

    Actually "import" is maybe the wrong expression....

    Actually "import" is maybe the wrong expression.

    Compiling the cpp file didnt't work using the old vs2008 installation (though it was the same windows.h used)

    After reinstalling vs2008 the USE...
  9. Replies
    13
    Views
    7,344

    Thx a lot for all your help: Of course the...

    Thx a lot for all your help:

    Of course the additional L was the correct answer.
    Didn't work at first though.

    The problem was a corrupted windows.h import from vs2008.
    Reinstalling it fixed...
  10. Replies
    13
    Views
    7,344

    thanks for the answer, kurt i got better...

    thanks for the answer, kurt

    i got better indeed, the long error message is gone, but now
    the message is


    error C3861: '_T': identifier not found


    Do I have to include further loadlibrary...
  11. Replies
    13
    Views
    7,344

    error C2664: 'LoadLibraryW' : cannot convert...

    error C2664: 'LoadLibraryW' : cannot convert parameter 1 from 'const char [17]' to 'LPCWSTR'
    1> Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or...
  12. Replies
    13
    Views
    7,344

    loadlibrary from dll

    hey guys,

    ist it possible to use LoadLibrary from inside a dll file to get access to another dll?

    part of sorcecode:


    #include <string.h>
    #include <stdio.h>
    #include <windows.h>
  13. Replies
    0
    Views
    1,879

    Create Wrapper DLL file

    Hi there,

    after a lot of using google, search functions and tutorials I'd like to post my problem here. Maybe you can help me on...

    Situation:

    I have a dll file (source file) which uses...
Results 1 to 13 of 13