Search:

Type: Posts; User: madzombie

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    1,399

    My Win32 dll function ; char* _stdcall...

    My Win32 dll function ;


    char* _stdcall pages(){
    const char* p ="deneme 1";
    const char* p2 = "deneme 2";
    int p_len = strlen(p);
    int p2_len = strlen(p2);
    int toplam = p_len + p2_len + 1;...
  2. Replies
    8
    Views
    1,399

    the project...

    the project
    http://www.ulutascomputer.com/main.rar
  3. Replies
    8
    Views
    1,399

    i write on Dev-cpp and this codes runnig. But it...

    i write on Dev-cpp and this codes runnig. But it isn't running on VS 2008 win32 dll project.



    #include <cstdlib>
    #include <iostream>
    #include <windows.h>
    using namespace std;
    char* _stdcall...
  4. Replies
    8
    Views
    1,399

    and StringLength function; int...

    and StringLength function;


    int StringLength(char inputString[])
    {
    int length = 0;
    for (int i = 0; inputString[i]!= '\0'; i++)
    length++;
    return length;
    }
  5. Replies
    8
    Views
    1,399

    string and dll

    my dll function is ;


    char* _stdcall pages(char* pageID){
    char *p = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\n<HTML><HEAD>\n<META http-equiv=Content-Type...
Results 1 to 5 of 5