mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
413 B
27 lines
413 B
//
|
|
// tmscfg.h
|
|
//
|
|
#include <lmcons.h>
|
|
#include <lmapibuf.h>
|
|
#include <svcloc.h>
|
|
|
|
#define DLL_BASED __declspec(dllexport)
|
|
|
|
#include "resource.h"
|
|
#include "comprop.h"
|
|
|
|
extern "C"
|
|
{
|
|
#include "svrinfo.h"
|
|
|
|
//
|
|
// DLL Main entry point
|
|
//
|
|
DLL_BASED BOOL WINAPI LibMain(
|
|
HINSTANCE hDll,
|
|
DWORD dwReason,
|
|
LPVOID lpReserved
|
|
);
|
|
}
|
|
|
|
#define TMSCFG_DLL_NAME _T("TMSCFG.DLL")
|