Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

39 lines
640 B

//========================================================================
//
// NDDEAPI.H include file for dde share apis
//
// Revision History:
// 5-13-19 ClausGi created
//
//========================================================================
// tabstop = 4
#include "windows.h"
#include "nddeapi.h"
#define NDDE_NOT_RUNNING 18
BOOL WINAPI
NDdeIsValidPassword (
LPTSTR password // name to check for validity
)
{
return TRUE;
}
BOOL WINAPI
NDdeIsValidTopic (
LPTSTR targetTopic // name to check for validity
)
{
return TRUE;
}
HWND WINAPI NDdeGetWindow ( VOID )
{
return (HWND)1;
}