Hi, I want to start making dlls, I know some C, I used this:
Code:
#include <stdio.h>
#include <windows.h>
#include <sys/types.h>

int __stdcall ret(HWND mWnd, HWND aWnd, char *data, char *parms, BOOL show, BOOL nopause)
{
    if (show) sprintf(data,"echo -a Do not hide of me :)");
    sprintf(data,"echo -a %s",data);
    return 2;
    
}

int main (void)
{
    return 0;
}

It's a useless dll, but i have to understand how they work first... I compiled the file as .dll, but i get: * $dll: no such routine 'ret'