old.c


/*
    $RCSfile: old.c,v $
    $Revision: 1.1 $
    $Date: 1999-06-26 23:49:25-07 $
    $Author: doomer $

    this is our example dll to which we have misplaced the source.
*/

#include <windows.h>

BOOL WINAPI DllMain(HMODULE hModule, DWORD reason, LPVOID reserved){
    return TRUE;
}

long func1(void){
    return 1;
}

long func2(long arg){
    return arg + 1;
}

/*
    $Log: old.c,v $
    Revision 1.1  1999-06-26 23:49:25-07  doomer
    Initial revision

*/