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.
41 lines
686 B
41 lines
686 B
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
#include "restok.h"
|
|
#include "reswin16.h"
|
|
#include "rlmsgtbl.h"
|
|
|
|
|
|
//.............................................................................
|
|
|
|
int ExtractResFromExe16A(
|
|
|
|
CHAR *szInputExe,
|
|
CHAR *szOutputRes,
|
|
WORD wFilter)
|
|
{
|
|
szInputExe;
|
|
szOutputRes;
|
|
wFilter;
|
|
|
|
QuitT( IDS_NO16RESWINYET, NULL, NULL);
|
|
|
|
return(-1);
|
|
}
|
|
|
|
//.............................................................................
|
|
|
|
int BuildExeFromRes16A(
|
|
|
|
CHAR *pstrDest,
|
|
CHAR *pstrRes,
|
|
CHAR *pstrSource )
|
|
{
|
|
pstrDest;
|
|
pstrRes;
|
|
pstrSource;
|
|
|
|
QuitT( IDS_NO16WINRESYET, NULL, NULL);
|
|
|
|
return(-1);
|
|
}
|