Bring winhelp back to life, with mainly support for Win95 help files.
This commit is contained in:
parent
21ec1d2a4c
commit
757928781e
|
@ -22,157 +22,158 @@
|
|||
#include <time.h>
|
||||
#include <ctype.h>
|
||||
#include <fcntl.h>
|
||||
#include <assert.h>
|
||||
#include "windows.h"
|
||||
#include "hlpfile.h"
|
||||
|
||||
typedef struct
|
||||
{
|
||||
const char *header1;
|
||||
const char *header2;
|
||||
const char *section;
|
||||
const char *first_paragraph;
|
||||
const char *newline;
|
||||
const char *next_paragraph;
|
||||
const char *special_char;
|
||||
const char *begin_italic;
|
||||
const char *end_italic;
|
||||
const char *begin_boldface;
|
||||
const char *end_boldface;
|
||||
const char *begin_typewriter;
|
||||
const char *end_typewriter;
|
||||
const char *tail;
|
||||
const char *header1;
|
||||
const char *header2;
|
||||
const char *section;
|
||||
const char *first_paragraph;
|
||||
const char *newline;
|
||||
const char *next_paragraph;
|
||||
const char *special_char;
|
||||
const char *begin_italic;
|
||||
const char *end_italic;
|
||||
const char *begin_boldface;
|
||||
const char *end_boldface;
|
||||
const char *begin_typewriter;
|
||||
const char *end_typewriter;
|
||||
const char *tail;
|
||||
} FORMAT;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
const char ch;
|
||||
const char *subst;
|
||||
const char ch;
|
||||
const char *subst;
|
||||
} CHARMAP[];
|
||||
|
||||
|
||||
FORMAT format =
|
||||
{
|
||||
"<!doctype linuxdoc system>\n"
|
||||
"<article>\n"
|
||||
"<title>\n",
|
||||
"<!doctype linuxdoc system>\n"
|
||||
"<article>\n"
|
||||
"<title>\n",
|
||||
|
||||
"\n<author>\n%s\n"
|
||||
"<date>\n%s\n",
|
||||
"\n<author>\n%s\n"
|
||||
"<date>\n%s\n",
|
||||
|
||||
"\n<sect>\n",
|
||||
"\n<p>\n",
|
||||
"\n<newline>\n",
|
||||
"\n\n",
|
||||
"\n<sect>\n",
|
||||
"\n<p>\n",
|
||||
"\n<newline>\n",
|
||||
"\n\n",
|
||||
|
||||
"&%s;",
|
||||
"&%s;",
|
||||
|
||||
"<em>",
|
||||
"</em>",
|
||||
"<bf>",
|
||||
"</bf>",
|
||||
"<tt>",
|
||||
"</tt>",
|
||||
"<em>",
|
||||
"</em>",
|
||||
"<bf>",
|
||||
"</bf>",
|
||||
"<tt>",
|
||||
"</tt>",
|
||||
|
||||
"\n</article>\n"
|
||||
"\n</article>\n"
|
||||
};
|
||||
|
||||
CHARMAP charmap =
|
||||
{{'Æ', "AElig"},
|
||||
{'Á', "Aacute"},
|
||||
{'Â', "Acirc"},
|
||||
{'À', "Agrave"},
|
||||
{'Ã', "Atilde"},
|
||||
{'Ç', "Ccedil"},
|
||||
{'É', "Eacute"},
|
||||
{'È', "Egrave"},
|
||||
{'Ë', "Euml"},
|
||||
{'Í', "Iacute"},
|
||||
{'Î', "Icirc"},
|
||||
{'Ì', "Igrave"},
|
||||
{'Ï', "Iuml"},
|
||||
{'Ñ', "Ntilde"},
|
||||
{'Ó', "Oacute"},
|
||||
{'Ô', "Ocirc"},
|
||||
{'Ò', "Ograve"},
|
||||
{'Ø', "Oslash"},
|
||||
{'Ú', "Uacute"},
|
||||
{'Ù', "Ugrave"},
|
||||
{'Ý', "Yacute"},
|
||||
{'á', "aacute"},
|
||||
{'â', "acirc"},
|
||||
{'æ', "aelig"},
|
||||
{'à', "agrave"},
|
||||
{'å', "aring"},
|
||||
{'ã', "atilde"},
|
||||
{'ç', "ccedil"},
|
||||
{'é', "eacute"},
|
||||
{'ê', "ecirc"},
|
||||
{'è', "egrave"},
|
||||
{'ë', "euml"},
|
||||
{'í', "iacute"},
|
||||
{'î', "icirc"},
|
||||
{'ì', "igrave"},
|
||||
{'ï', "iuml"},
|
||||
{'ñ', "ntilde"},
|
||||
{'ó', "oacute"},
|
||||
{'ÿ', "yuml"},
|
||||
{'ô', "ocirc"},
|
||||
{'ò', "ograve"},
|
||||
{'ø', "oslash"},
|
||||
{'õ', "otilde"},
|
||||
{'ú', "uacute"},
|
||||
{'û', "ucirc"},
|
||||
{'ù', "ugrave"},
|
||||
{'ý', "yacute"},
|
||||
{'<', "lt"},
|
||||
{'&', "amp"},
|
||||
{'"', "dquot"},
|
||||
{'#', "num"},
|
||||
{'%', "percnt"},
|
||||
{'\'', "quot"},
|
||||
{{'Æ', "AElig"},
|
||||
{'Á', "Aacute"},
|
||||
{'Â', "Acirc"},
|
||||
{'À', "Agrave"},
|
||||
{'Ã', "Atilde"},
|
||||
{'Ç', "Ccedil"},
|
||||
{'É', "Eacute"},
|
||||
{'È', "Egrave"},
|
||||
{'Ë', "Euml"},
|
||||
{'Í', "Iacute"},
|
||||
{'Î', "Icirc"},
|
||||
{'Ì', "Igrave"},
|
||||
{'Ï', "Iuml"},
|
||||
{'Ñ', "Ntilde"},
|
||||
{'Ó', "Oacute"},
|
||||
{'Ô', "Ocirc"},
|
||||
{'Ò', "Ograve"},
|
||||
{'Ø', "Oslash"},
|
||||
{'Ú', "Uacute"},
|
||||
{'Ù', "Ugrave"},
|
||||
{'Ý', "Yacute"},
|
||||
{'á', "aacute"},
|
||||
{'â', "acirc"},
|
||||
{'æ', "aelig"},
|
||||
{'à', "agrave"},
|
||||
{'å', "aring"},
|
||||
{'ã', "atilde"},
|
||||
{'ç', "ccedil"},
|
||||
{'é', "eacute"},
|
||||
{'ê', "ecirc"},
|
||||
{'è', "egrave"},
|
||||
{'ë', "euml"},
|
||||
{'í', "iacute"},
|
||||
{'î', "icirc"},
|
||||
{'ì', "igrave"},
|
||||
{'ï', "iuml"},
|
||||
{'ñ', "ntilde"},
|
||||
{'ó', "oacute"},
|
||||
{'ÿ', "yuml"},
|
||||
{'ô', "ocirc"},
|
||||
{'ò', "ograve"},
|
||||
{'ø', "oslash"},
|
||||
{'õ', "otilde"},
|
||||
{'ú', "uacute"},
|
||||
{'û', "ucirc"},
|
||||
{'ù', "ugrave"},
|
||||
{'ý', "yacute"},
|
||||
{'<', "lt"},
|
||||
{'&', "amp"},
|
||||
{'"', "dquot"},
|
||||
{'#', "num"},
|
||||
{'%', "percnt"},
|
||||
{'\'', "quot"},
|
||||
#if 0
|
||||
{'(', "lpar"},
|
||||
{')', "rpar"},
|
||||
{'*', "ast"},
|
||||
{'+', "plus"},
|
||||
{',', "comma"},
|
||||
{'-', "hyphen"},
|
||||
{':', "colon"},
|
||||
{';', "semi"},
|
||||
{'=', "equals"},
|
||||
{'@', "commat"},
|
||||
{'[', "lsqb"},
|
||||
{']', "rsqb"},
|
||||
{'^', "circ"},
|
||||
{'_', "lowbar"},
|
||||
{'{', "lcub"},
|
||||
{'|', "verbar"},
|
||||
{'}', "rcub"},
|
||||
{'~', "tilde"},
|
||||
{'(', "lpar"},
|
||||
{')', "rpar"},
|
||||
{'*', "ast"},
|
||||
{'+', "plus"},
|
||||
{',', "comma"},
|
||||
{'-', "hyphen"},
|
||||
{':', "colon"},
|
||||
{';', "semi"},
|
||||
{'=', "equals"},
|
||||
{'@', "commat"},
|
||||
{'[', "lsqb"},
|
||||
{']', "rsqb"},
|
||||
{'^', "circ"},
|
||||
{'_', "lowbar"},
|
||||
{'{', "lcub"},
|
||||
{'|', "verbar"},
|
||||
{'}', "rcub"},
|
||||
{'~', "tilde"},
|
||||
#endif
|
||||
{'\\', "bsol"},
|
||||
{'$', "dollar"},
|
||||
{'Ä', "Auml"},
|
||||
{'ä', "auml"},
|
||||
{'Ö', "Ouml"},
|
||||
{'ö', "ouml"},
|
||||
{'Ü', "Uuml"},
|
||||
{'ü', "uuml"},
|
||||
{'ß', "szlig"},
|
||||
{'>', "gt"},
|
||||
{'§', "sect"},
|
||||
{'¶', "para"},
|
||||
{'©', "copy"},
|
||||
{'¡', "iexcl"},
|
||||
{'¿', "iquest"},
|
||||
{'¢', "cent"},
|
||||
{'£', "pound"},
|
||||
{'×', "times"},
|
||||
{'±', "plusmn"},
|
||||
{'÷', "divide"},
|
||||
{'¬', "not"},
|
||||
{'µ', "mu"},
|
||||
{0,0}};
|
||||
{'\\', "bsol"},
|
||||
{'$', "dollar"},
|
||||
{'Ä', "Auml"},
|
||||
{'ä', "auml"},
|
||||
{'Ö', "Ouml"},
|
||||
{'ö', "ouml"},
|
||||
{'Ü', "Uuml"},
|
||||
{'ü', "uuml"},
|
||||
{'ß', "szlig"},
|
||||
{'>', "gt"},
|
||||
{'§', "sect"},
|
||||
{'¶', "para"},
|
||||
{'©', "copy"},
|
||||
{'¡', "iexcl"},
|
||||
{'¿', "iquest"},
|
||||
{'¢', "cent"},
|
||||
{'£', "pound"},
|
||||
{'×', "times"},
|
||||
{'±', "plusmn"},
|
||||
{'÷', "divide"},
|
||||
{'¬', "not"},
|
||||
{'µ', "mu"},
|
||||
{0,0}};
|
||||
|
||||
/***********************************************************************
|
||||
*
|
||||
|
@ -181,18 +182,18 @@ CHARMAP charmap =
|
|||
|
||||
static void print_text(const char *p)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
|
||||
for (; *p; p++)
|
||||
for (; *p; p++)
|
||||
{
|
||||
for (i = 0; charmap[i].ch; i++)
|
||||
if (*p == charmap[i].ch)
|
||||
{
|
||||
printf(format.special_char, charmap[i].subst);
|
||||
break;
|
||||
}
|
||||
if (!charmap[i].ch)
|
||||
printf("%c", *p);
|
||||
for (i = 0; charmap[i].ch; i++)
|
||||
if (*p == charmap[i].ch)
|
||||
{
|
||||
printf(format.special_char, charmap[i].subst);
|
||||
break;
|
||||
}
|
||||
if (!charmap[i].ch)
|
||||
printf("%c", *p);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -203,60 +204,68 @@ static void print_text(const char *p)
|
|||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
HLPFILE *hlpfile;
|
||||
HLPFILE_PAGE *page;
|
||||
HLPFILE_PARAGRAPH *paragraph;
|
||||
time_t t;
|
||||
char date[50];
|
||||
char *filename;
|
||||
HLPFILE *hlpfile;
|
||||
HLPFILE_PAGE *page;
|
||||
HLPFILE_PARAGRAPH *paragraph;
|
||||
time_t t;
|
||||
char date[50];
|
||||
char *filename;
|
||||
|
||||
hlpfile = HLPFILE_ReadHlpFile(argc > 1 ? argv[1] : "");
|
||||
hlpfile = HLPFILE_ReadHlpFile(argc > 1 ? argv[1] : "");
|
||||
|
||||
if (!hlpfile) return(2);
|
||||
if (!hlpfile) return 2;
|
||||
|
||||
time(&t);
|
||||
strftime(date, sizeof(date), "%x", localtime(&t));
|
||||
filename = strrchr(hlpfile->lpszPath, '/');
|
||||
if (filename) filename++;
|
||||
else filename = hlpfile->lpszPath;
|
||||
time(&t);
|
||||
strftime(date, sizeof(date), "%x", localtime(&t));
|
||||
filename = strrchr(hlpfile->lpszPath, '/');
|
||||
if (filename) filename++;
|
||||
else filename = hlpfile->lpszPath;
|
||||
|
||||
/* Header */
|
||||
printf(format.header1);
|
||||
print_text(hlpfile->lpszTitle);
|
||||
printf(format.header2, filename, date);
|
||||
/* Header */
|
||||
printf(format.header1);
|
||||
print_text(hlpfile->lpszTitle);
|
||||
printf(format.header2, filename, date);
|
||||
|
||||
for (page = hlpfile->first_page; page; page = page->next)
|
||||
for (page = hlpfile->first_page; page; page = page->next)
|
||||
{
|
||||
paragraph = page->first_paragraph;
|
||||
if (!paragraph) continue;
|
||||
paragraph = page->first_paragraph;
|
||||
if (!paragraph) continue;
|
||||
|
||||
/* Section */
|
||||
printf(format.section);
|
||||
for (; paragraph && !paragraph->wVSpace; paragraph = paragraph->next)
|
||||
print_text(paragraph->lpszText);
|
||||
printf(format.first_paragraph);
|
||||
/* Section */
|
||||
printf(format.section);
|
||||
for (; paragraph && !paragraph->u.text.wVSpace; paragraph = paragraph->next)
|
||||
print_text(paragraph->u.text.lpszText);
|
||||
printf(format.first_paragraph);
|
||||
|
||||
for (; paragraph; paragraph = paragraph->next)
|
||||
for (; paragraph; paragraph = paragraph->next)
|
||||
{
|
||||
/* New line; new paragraph */
|
||||
if (paragraph->wVSpace == 1)
|
||||
printf(format.newline);
|
||||
else if (paragraph->wVSpace > 1)
|
||||
printf(format.next_paragraph);
|
||||
switch (paragraph->cookie)
|
||||
{
|
||||
case para_normal_text:
|
||||
case para_debug_text:
|
||||
/* New line; new paragraph */
|
||||
if (paragraph->u.text.wVSpace == 1)
|
||||
printf(format.newline);
|
||||
else if (paragraph->u.text.wVSpace > 1)
|
||||
printf(format.next_paragraph);
|
||||
|
||||
if (paragraph->wFont)
|
||||
printf(format.begin_boldface);
|
||||
if (paragraph->u.text.wFont)
|
||||
printf(format.begin_boldface);
|
||||
|
||||
print_text(paragraph->lpszText);
|
||||
print_text(paragraph->u.text.lpszText);
|
||||
|
||||
if (paragraph->wFont)
|
||||
printf(format.end_boldface);
|
||||
if (paragraph->u.text.wFont)
|
||||
printf(format.end_boldface);
|
||||
break;
|
||||
case para_image:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
printf(format.tail);
|
||||
printf(format.tail);
|
||||
|
||||
return(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
@ -268,64 +277,92 @@ static FILE *file = 0;
|
|||
|
||||
HFILE WINAPI OpenFile( LPCSTR path, OFSTRUCT *ofs, UINT mode )
|
||||
{
|
||||
file = *path ? fopen(path, "r") : stdin;
|
||||
return file ? (HFILE)1 : HFILE_ERROR;
|
||||
file = *path ? fopen(path, "r") : stdin;
|
||||
return file ? (HFILE)1 : HFILE_ERROR;
|
||||
}
|
||||
|
||||
HFILE WINAPI _lclose( HFILE hFile )
|
||||
{
|
||||
fclose(file);
|
||||
return 0;
|
||||
fclose(file);
|
||||
return 0;
|
||||
}
|
||||
|
||||
LONG WINAPI _hread( HFILE hFile, LPVOID buffer, LONG count )
|
||||
{
|
||||
return fread(buffer, 1, count, file);
|
||||
return fread(buffer, 1, count, file);
|
||||
}
|
||||
|
||||
HGLOBAL WINAPI GlobalAlloc( UINT flags, DWORD size )
|
||||
void* WINAPI HeapAlloc( HANDLE heap, DWORD flags, DWORD size )
|
||||
{
|
||||
return (HGLOBAL) malloc(size);
|
||||
assert(flags == 0);
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
LPVOID WINAPI GlobalLock( HGLOBAL handle )
|
||||
void* WINAPI HeapReAlloc( HANDLE heap, DWORD flags, void* ptr, DWORD size)
|
||||
{
|
||||
return (LPVOID) handle;
|
||||
assert(flags == 0);
|
||||
return realloc(ptr, size);
|
||||
}
|
||||
|
||||
HGLOBAL WINAPI GlobalFree( HGLOBAL handle )
|
||||
BOOL WINAPI HeapFree( HGLOBAL handle, DWORD flags, void* ptr )
|
||||
{
|
||||
free((VOID*) handle);
|
||||
return(0);
|
||||
free(ptr);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
char __wine_dbch_winhelp[] = "\003winhelp";
|
||||
|
||||
static char * const debug_channels[1] =
|
||||
{
|
||||
__wine_dbch_winhelp
|
||||
};
|
||||
|
||||
int wine_dbg_log( int cls, const char *channel, const char *func, const char *format, ... )
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
HBITMAP WINAPI CreateDIBitmap(HDC hdc, CONST BITMAPINFOHEADER* bih, DWORD a, CONST void* ptr, CONST BITMAPINFO* bi, UINT c)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
HDC WINAPI GetDC(HWND h)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
BOOL WINAPI DeleteObject(HGDIOBJ h)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
/*
|
||||
* String functions
|
||||
*
|
||||
* Copyright 1993 Yngvi Sigurjonsson (yngvi@hafro.is)
|
||||
*/
|
||||
|
||||
INT WINAPI lstrcmp(LPCSTR str1,LPCSTR str2)
|
||||
INT WINAPI lstrcmp( LPCSTR str1, LPCSTR str2 )
|
||||
{
|
||||
return strcmp( str1, str2 );
|
||||
return strcmp( str1, str2 );
|
||||
}
|
||||
|
||||
INT WINAPI lstrcmpi( LPCSTR str1, LPCSTR str2 )
|
||||
{
|
||||
INT res;
|
||||
INT res;
|
||||
|
||||
while (*str1)
|
||||
while (*str1)
|
||||
{
|
||||
if ((res = toupper(*str1) - toupper(*str2)) != 0) return res;
|
||||
str1++;
|
||||
str2++;
|
||||
if ((res = toupper(*str1) - toupper(*str2)) != 0) return res;
|
||||
str1++;
|
||||
str2++;
|
||||
}
|
||||
return toupper(*str1) - toupper(*str2);
|
||||
return toupper(*str1) - toupper(*str2);
|
||||
}
|
||||
|
||||
INT WINAPI lstrlen(LPCSTR str)
|
||||
INT WINAPI lstrlen( LPCSTR str )
|
||||
{
|
||||
return strlen(str);
|
||||
return strlen(str);
|
||||
}
|
||||
|
||||
LPSTR WINAPI lstrcpyA( LPSTR dst, LPCSTR src )
|
||||
|
@ -334,12 +371,3 @@ LPSTR WINAPI lstrcpyA( LPSTR dst, LPCSTR src )
|
|||
strcpy( dst, src );
|
||||
return dst;
|
||||
}
|
||||
|
||||
void WINAPI hmemcpy16(LPVOID hpvDest, LPCVOID hpvSource, LONG cbCopy)
|
||||
{
|
||||
memcpy(hpvDest, hpvSource, cbCopy);
|
||||
}
|
||||
|
||||
/* Local Variables: */
|
||||
/* c-file-style: "GNU" */
|
||||
/* End: */
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,8 @@
|
|||
/*
|
||||
* Help Viewer
|
||||
*
|
||||
* Copyright 1996 Ulrich Schmid
|
||||
* Copyright 1996 Ulrich Schmid
|
||||
* 2002 Eric Pouech
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -22,74 +23,89 @@ struct tagHelpFile;
|
|||
|
||||
typedef struct
|
||||
{
|
||||
LPCSTR lpszPath;
|
||||
LONG lHash;
|
||||
BOOL bPopup;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
LPCSTR lpszPath;
|
||||
LONG lHash;
|
||||
BOOL bPopup;
|
||||
} HLPFILE_LINK;
|
||||
|
||||
enum para_type {para_normal_text, para_debug_text, para_image};
|
||||
|
||||
typedef struct tagHlpFileParagraph
|
||||
{
|
||||
LPSTR lpszText;
|
||||
enum para_type cookie;
|
||||
|
||||
UINT bDebug;
|
||||
UINT wFont;
|
||||
UINT wIndent;
|
||||
UINT wHSpace;
|
||||
UINT wVSpace;
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
LPSTR lpszText;
|
||||
unsigned wFont;
|
||||
unsigned wIndent;
|
||||
unsigned wHSpace;
|
||||
unsigned wVSpace;
|
||||
} text;
|
||||
struct
|
||||
{
|
||||
HBITMAP hBitmap;
|
||||
unsigned pos; /* 0: center, 1: left, 2: right */
|
||||
} image;
|
||||
} u;
|
||||
|
||||
HLPFILE_LINK *link;
|
||||
HLPFILE_LINK* link;
|
||||
|
||||
struct tagHlpFileParagraph *next;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
struct tagHlpFileParagraph* next;
|
||||
} HLPFILE_PARAGRAPH;
|
||||
|
||||
typedef struct tagHlpFilePage
|
||||
{
|
||||
LPSTR lpszTitle;
|
||||
HLPFILE_PARAGRAPH *first_paragraph;
|
||||
LPSTR lpszTitle;
|
||||
HLPFILE_PARAGRAPH* first_paragraph;
|
||||
|
||||
UINT wNumber;
|
||||
|
||||
struct tagHlpFilePage *next;
|
||||
struct tagHlpFileFile *file;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
unsigned wNumber;
|
||||
unsigned offset;
|
||||
struct tagHlpFilePage* next;
|
||||
struct tagHlpFilePage* prev;
|
||||
struct tagHlpFileFile* file;
|
||||
} HLPFILE_PAGE;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
LONG lHash;
|
||||
UINT wPage;
|
||||
LONG lHash;
|
||||
unsigned long offset;
|
||||
} HLPFILE_CONTEXT;
|
||||
|
||||
typedef struct tagHlpFileMacro
|
||||
{
|
||||
LPCSTR lpszMacro;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
struct tagHlpFileMacro *next;
|
||||
LPCSTR lpszMacro;
|
||||
struct tagHlpFileMacro* next;
|
||||
} HLPFILE_MACRO;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
LOGFONT LogFont;
|
||||
HFONT hFont;
|
||||
COLORREF color;
|
||||
} HLPFILE_FONT;
|
||||
|
||||
typedef struct tagHlpFileFile
|
||||
{
|
||||
LPSTR lpszPath;
|
||||
LPSTR lpszTitle;
|
||||
HLPFILE_PAGE *first_page;
|
||||
HLPFILE_MACRO *first_macro;
|
||||
UINT wContextLen;
|
||||
HLPFILE_CONTEXT *Context;
|
||||
LPSTR lpszPath;
|
||||
LPSTR lpszTitle;
|
||||
HLPFILE_PAGE* first_page;
|
||||
HLPFILE_MACRO* first_macro;
|
||||
unsigned wContextLen;
|
||||
HLPFILE_CONTEXT* Context;
|
||||
struct tagHlpFileFile* prev;
|
||||
struct tagHlpFileFile* next;
|
||||
|
||||
struct tagHlpFileFile *prev;
|
||||
struct tagHlpFileFile *next;
|
||||
unsigned wRefCount;
|
||||
|
||||
UINT wRefCount;
|
||||
unsigned short version;
|
||||
unsigned short flags;
|
||||
unsigned hasPhrases; /* Phrases or PhrIndex/PhrImage */
|
||||
|
||||
HGLOBAL hTitle;
|
||||
HGLOBAL hContext;
|
||||
HGLOBAL hSelf;
|
||||
unsigned numFonts;
|
||||
HLPFILE_FONT* fonts;
|
||||
} HLPFILE;
|
||||
|
||||
HLPFILE *HLPFILE_ReadHlpFile(LPCSTR lpszPath);
|
||||
|
@ -98,7 +114,3 @@ HLPFILE_PAGE *HLPFILE_PageByHash(LPCSTR lpszPath, LONG wNum);
|
|||
LONG HLPFILE_Hash(LPCSTR lpszContext);
|
||||
VOID HLPFILE_FreeHlpFilePage(HLPFILE_PAGE*);
|
||||
VOID HLPFILE_FreeHlpFile(HLPFILE*);
|
||||
|
||||
/* Local Variables: */
|
||||
/* c-file-style: "GNU" */
|
||||
/* End: */
|
||||
|
|
|
@ -18,460 +18,462 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "windows.h"
|
||||
#include "commdlg.h"
|
||||
#include "winhelp.h"
|
||||
#include "macro.h"
|
||||
|
||||
VOID MACRO_About(VOID)
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(winhelp);
|
||||
|
||||
void MACRO_About(void)
|
||||
{
|
||||
fprintf(stderr, "About()\n");
|
||||
WINE_FIXME("About()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_AddAccelerator(LONG u1, LONG u2, LPCSTR str)
|
||||
void MACRO_AddAccelerator(LONG u1, LONG u2, LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "AddAccelerator(%lu, %lu, \"%s\")\n", u1, u2, str);
|
||||
WINE_FIXME("AddAccelerator(%lu, %lu, \"%s\")\n", u1, u2, str);
|
||||
}
|
||||
|
||||
VOID MACRO_ALink(LPCSTR str1, LONG u, LPCSTR str2)
|
||||
void MACRO_ALink(LPCSTR str1, LONG u, LPCSTR str2)
|
||||
{
|
||||
fprintf(stderr, "ALink(\"%s\", %lu, \"%s\")\n", str1, u, str2);
|
||||
WINE_FIXME("ALink(\"%s\", %lu, \"%s\")\n", str1, u, str2);
|
||||
}
|
||||
|
||||
VOID MACRO_Annotate(VOID)
|
||||
void MACRO_Annotate(void)
|
||||
{
|
||||
fprintf(stderr, "Annotate()\n");
|
||||
WINE_FIXME("Annotate()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_AppendItem(LPCSTR str1, LPCSTR str2, LPCSTR str3, LPCSTR str4)
|
||||
void MACRO_AppendItem(LPCSTR str1, LPCSTR str2, LPCSTR str3, LPCSTR str4)
|
||||
{
|
||||
fprintf(stderr, "AppendItem(\"%s\", \"%s\", \"%s\", \"%s\")\n", str1, str2, str3, str4);
|
||||
WINE_FIXME("AppendItem(\"%s\", \"%s\", \"%s\", \"%s\")\n", str1, str2, str3, str4);
|
||||
}
|
||||
|
||||
VOID MACRO_Back(VOID)
|
||||
void MACRO_Back(void)
|
||||
{
|
||||
fprintf(stderr, "Back()\n");
|
||||
WINE_FIXME("Back()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_BackFlush(VOID)
|
||||
void MACRO_BackFlush(void)
|
||||
{
|
||||
fprintf(stderr, "BackFlush()\n");
|
||||
WINE_FIXME("BackFlush()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_BookmarkDefine(VOID)
|
||||
void MACRO_BookmarkDefine(void)
|
||||
{
|
||||
fprintf(stderr, "BookmarkDefine()\n");
|
||||
WINE_FIXME("BookmarkDefine()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_BookmarkMore(VOID)
|
||||
void MACRO_BookmarkMore(void)
|
||||
{
|
||||
fprintf(stderr, "BookmarkMore()\n");
|
||||
WINE_FIXME("BookmarkMore()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_BrowseButtons(VOID)
|
||||
void MACRO_BrowseButtons(void)
|
||||
{
|
||||
MACRO_CreateButton("BTN_PREV", "&<<", "Prev()");
|
||||
MACRO_CreateButton("BTN_NEXT", "&>>", "Next()");
|
||||
MACRO_CreateButton("BTN_PREV", "&<<", "Prev()");
|
||||
MACRO_CreateButton("BTN_NEXT", "&>>", "Next()");
|
||||
}
|
||||
|
||||
VOID MACRO_ChangeButtonBinding(LPCSTR str1, LPCSTR str2)
|
||||
void MACRO_ChangeButtonBinding(LPCSTR str1, LPCSTR str2)
|
||||
{
|
||||
fprintf(stderr, "ChangeButtonBinding(\"%s\", \"%s\")\n", str1, str2);
|
||||
WINE_FIXME("ChangeButtonBinding(\"%s\", \"%s\")\n", str1, str2);
|
||||
}
|
||||
|
||||
VOID MACRO_ChangeEnable(LPCSTR str1, LPCSTR str2)
|
||||
void MACRO_ChangeEnable(LPCSTR str1, LPCSTR str2)
|
||||
{
|
||||
fprintf(stderr, "ChangeEnable(\"%s\", \"%s\")\n", str1, str2);
|
||||
WINE_FIXME("ChangeEnable(\"%s\", \"%s\")\n", str1, str2);
|
||||
}
|
||||
|
||||
VOID MACRO_ChangeItemBinding(LPCSTR str1, LPCSTR str2)
|
||||
void MACRO_ChangeItemBinding(LPCSTR str1, LPCSTR str2)
|
||||
{
|
||||
fprintf(stderr, "ChangeItemBinding(\"%s\", \"%s\")\n", str1, str2);
|
||||
WINE_FIXME("ChangeItemBinding(\"%s\", \"%s\")\n", str1, str2);
|
||||
}
|
||||
|
||||
VOID MACRO_CheckItem(LPCSTR str)
|
||||
void MACRO_CheckItem(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "CheckItem(\"%s\")\n", str);
|
||||
WINE_FIXME("CheckItem(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_CloseSecondarys(VOID)
|
||||
void MACRO_CloseSecondarys(void)
|
||||
{
|
||||
WINHELP_WINDOW *win;
|
||||
for (win = Globals.win_list; win; win = win->next)
|
||||
if (win->lpszName && lstrcmpi(win->lpszName, "main"))
|
||||
DestroyWindow(win->hMainWnd);
|
||||
WINHELP_WINDOW *win;
|
||||
for (win = Globals.win_list; win; win = win->next)
|
||||
if (win->lpszName && lstrcmpi(win->lpszName, "main"))
|
||||
DestroyWindow(win->hMainWnd);
|
||||
}
|
||||
|
||||
VOID MACRO_CloseWindow(LPCSTR lpszWindow)
|
||||
void MACRO_CloseWindow(LPCSTR lpszWindow)
|
||||
{
|
||||
WINHELP_WINDOW *win;
|
||||
if (!lpszWindow || !lpszWindow[0]) lpszWindow = "main";
|
||||
WINHELP_WINDOW *win;
|
||||
if (!lpszWindow || !lpszWindow[0]) lpszWindow = "main";
|
||||
|
||||
for (win = Globals.win_list; win; win = win->next)
|
||||
if (win->lpszName && !lstrcmpi(win->lpszName, lpszWindow))
|
||||
DestroyWindow(win->hMainWnd);
|
||||
for (win = Globals.win_list; win; win = win->next)
|
||||
if (win->lpszName && !lstrcmpi(win->lpszName, lpszWindow))
|
||||
DestroyWindow(win->hMainWnd);
|
||||
}
|
||||
|
||||
VOID MACRO_Compare(LPCSTR str)
|
||||
void MACRO_Compare(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "Compare(\"%s\")\n", str);
|
||||
WINE_FIXME("Compare(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_Contents(VOID)
|
||||
void MACRO_Contents(void)
|
||||
{
|
||||
if (Globals.active_win->page)
|
||||
MACRO_JumpContents(Globals.active_win->page->file->lpszPath, NULL);
|
||||
if (Globals.active_win->page)
|
||||
MACRO_JumpContents(Globals.active_win->page->file->lpszPath, NULL);
|
||||
}
|
||||
|
||||
VOID MACRO_ControlPanel(LPCSTR str1, LPCSTR str2, LONG u)
|
||||
void MACRO_ControlPanel(LPCSTR str1, LPCSTR str2, LONG u)
|
||||
{
|
||||
fprintf(stderr, "ControlPanel(\"%s\", \"%s\", %lu)\n", str1, str2, u);
|
||||
WINE_FIXME("ControlPanel(\"%s\", \"%s\", %lu)\n", str1, str2, u);
|
||||
}
|
||||
|
||||
VOID MACRO_CopyDialog(VOID)
|
||||
void MACRO_CopyDialog(void)
|
||||
{
|
||||
fprintf(stderr, "CopyDialog()\n");
|
||||
WINE_FIXME("CopyDialog()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_CopyTopic(VOID)
|
||||
void MACRO_CopyTopic(void)
|
||||
{
|
||||
fprintf(stderr, "CopyTopic()\n");
|
||||
WINE_FIXME("CopyTopic()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_CreateButton(LPCSTR id, LPCSTR name, LPCSTR macro)
|
||||
void MACRO_CreateButton(LPCSTR id, LPCSTR name, LPCSTR macro)
|
||||
{
|
||||
WINHELP_WINDOW *win = Globals.active_win;
|
||||
WINHELP_BUTTON *button, **b;
|
||||
LONG size;
|
||||
HGLOBAL handle;
|
||||
LPSTR ptr;
|
||||
WINHELP_WINDOW *win = Globals.active_win;
|
||||
WINHELP_BUTTON *button, **b;
|
||||
LONG size;
|
||||
LPSTR ptr;
|
||||
|
||||
size = sizeof(WINHELP_BUTTON) + lstrlen(id) + lstrlen(name) + lstrlen(macro) + 3;
|
||||
handle = GlobalAlloc(GMEM_FIXED, size);
|
||||
if (!handle) return;
|
||||
size = sizeof(WINHELP_BUTTON) + lstrlen(id) + lstrlen(name) + lstrlen(macro) + 3;
|
||||
|
||||
button = GlobalLock(handle);
|
||||
button->hSelf = handle;
|
||||
button->next = 0;
|
||||
button->hWnd = 0;
|
||||
button = HeapAlloc(GetProcessHeap(), 0, size);
|
||||
if (!button) return;
|
||||
|
||||
ptr = GlobalLock(handle);
|
||||
ptr += sizeof(WINHELP_BUTTON);
|
||||
button->next = 0;
|
||||
button->hWnd = 0;
|
||||
|
||||
lstrcpy(ptr, (LPSTR) id);
|
||||
button->lpszID = ptr;
|
||||
ptr += lstrlen(id) + 1;
|
||||
ptr = (char*)button + sizeof(WINHELP_BUTTON);
|
||||
|
||||
lstrcpy(ptr, (LPSTR) name);
|
||||
button->lpszName = ptr;
|
||||
ptr += lstrlen(name) + 1;
|
||||
lstrcpy(ptr, (LPSTR) id);
|
||||
button->lpszID = ptr;
|
||||
ptr += lstrlen(id) + 1;
|
||||
|
||||
lstrcpy(ptr, (LPSTR) macro);
|
||||
button->lpszMacro = ptr;
|
||||
lstrcpy(ptr, (LPSTR) name);
|
||||
button->lpszName = ptr;
|
||||
ptr += lstrlen(name) + 1;
|
||||
|
||||
button->wParam = WH_FIRST_BUTTON;
|
||||
for (b = &win->first_button; *b; b = &(*b)->next)
|
||||
button->wParam = max(button->wParam, (*b)->wParam + 1);
|
||||
*b = button;
|
||||
lstrcpy(ptr, (LPSTR) macro);
|
||||
button->lpszMacro = ptr;
|
||||
|
||||
SendMessage(win->hMainWnd, WM_USER, 0, 0);
|
||||
button->wParam = WH_FIRST_BUTTON;
|
||||
for (b = &win->first_button; *b; b = &(*b)->next)
|
||||
button->wParam = max(button->wParam, (*b)->wParam + 1);
|
||||
*b = button;
|
||||
|
||||
SendMessage(win->hMainWnd, WM_USER, 0, 0);
|
||||
}
|
||||
|
||||
VOID MACRO_DeleteItem(LPCSTR str)
|
||||
void MACRO_DeleteItem(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "DeleteItem(\"%s\")\n", str);
|
||||
WINE_FIXME("DeleteItem(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_DeleteMark(LPCSTR str)
|
||||
void MACRO_DeleteMark(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "DeleteMark(\"%s\")\n", str);
|
||||
WINE_FIXME("DeleteMark(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_DestroyButton(LPCSTR str)
|
||||
void MACRO_DestroyButton(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "DestroyButton(\"%s\")\n", str);
|
||||
WINE_FIXME("DestroyButton(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_DisableButton(LPCSTR str)
|
||||
void MACRO_DisableButton(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "DisableButton(\"%s\")\n", str);
|
||||
WINE_FIXME("DisableButton(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_DisableItem(LPCSTR str)
|
||||
void MACRO_DisableItem(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "DisableItem(\"%s\")\n", str);
|
||||
WINE_FIXME("DisableItem(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_EnableButton(LPCSTR str)
|
||||
void MACRO_EnableButton(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "EnableButton(\"%s\")\n", str);
|
||||
WINE_FIXME("EnableButton(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_EnableItem(LPCSTR str)
|
||||
void MACRO_EnableItem(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "EnableItem(\"%s\")\n", str);
|
||||
WINE_FIXME("EnableItem(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_EndMPrint(VOID)
|
||||
void MACRO_EndMPrint(void)
|
||||
{
|
||||
fprintf(stderr, "EndMPrint()\n");
|
||||
WINE_FIXME("EndMPrint()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_ExecFile(LPCSTR str1, LPCSTR str2, LONG u, LPCSTR str3)
|
||||
void MACRO_ExecFile(LPCSTR str1, LPCSTR str2, LONG u, LPCSTR str3)
|
||||
{
|
||||
fprintf(stderr, "ExecFile(\"%s\", \"%s\", %lu, \"%s\")\n", str1, str2, u, str3);
|
||||
WINE_FIXME("ExecFile(\"%s\", \"%s\", %lu, \"%s\")\n", str1, str2, u, str3);
|
||||
}
|
||||
|
||||
VOID MACRO_ExecProgram(LPCSTR str, LONG u)
|
||||
void MACRO_ExecProgram(LPCSTR str, LONG u)
|
||||
{
|
||||
fprintf(stderr, "ExecProgram(\"%s\", %lu)\n", str, u);
|
||||
WINE_FIXME("ExecProgram(\"%s\", %lu)\n", str, u);
|
||||
}
|
||||
|
||||
VOID MACRO_Exit(VOID)
|
||||
void MACRO_Exit(void)
|
||||
{
|
||||
while(Globals.win_list)
|
||||
DestroyWindow(Globals.win_list->hMainWnd);
|
||||
while (Globals.win_list)
|
||||
DestroyWindow(Globals.win_list->hMainWnd);
|
||||
}
|
||||
|
||||
VOID MACRO_ExtAbleItem(LPCSTR str, LONG u)
|
||||
void MACRO_ExtAbleItem(LPCSTR str, LONG u)
|
||||
{
|
||||
fprintf(stderr, "ExtAbleItem(\"%s\", %lu)\n", str, u);
|
||||
WINE_FIXME("ExtAbleItem(\"%s\", %lu)\n", str, u);
|
||||
}
|
||||
|
||||
VOID MACRO_ExtInsertItem(LPCSTR str1, LPCSTR str2, LPCSTR str3, LPCSTR str4, LONG u1, LONG u2)
|
||||
void MACRO_ExtInsertItem(LPCSTR str1, LPCSTR str2, LPCSTR str3, LPCSTR str4, LONG u1, LONG u2)
|
||||
{
|
||||
fprintf(stderr, "ExtInsertItem(\"%s\", \"%s\", \"%s\", \"%s\", %lu, %lu)\n", str1, str2, str3, str4, u1, u2);
|
||||
WINE_FIXME("ExtInsertItem(\"%s\", \"%s\", \"%s\", \"%s\", %lu, %lu)\n", str1, str2, str3, str4, u1, u2);
|
||||
}
|
||||
|
||||
VOID MACRO_ExtInsertMenu(LPCSTR str1, LPCSTR str2, LPCSTR str3, LONG u1, LONG u2)
|
||||
void MACRO_ExtInsertMenu(LPCSTR str1, LPCSTR str2, LPCSTR str3, LONG u1, LONG u2)
|
||||
{
|
||||
fprintf(stderr, "ExtInsertMenu(\"%s\", \"%s\", \"%s\", %lu, %lu)\n", str1, str2, str3, u1, u2);
|
||||
WINE_FIXME("ExtInsertMenu(\"%s\", \"%s\", \"%s\", %lu, %lu)\n", str1, str2, str3, u1, u2);
|
||||
}
|
||||
|
||||
BOOL MACRO_FileExist(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "FileExist(\"%s\")\n", str);
|
||||
return TRUE;
|
||||
WINE_FIXME("FileExist(\"%s\")\n", str);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
VOID MACRO_FileOpen(VOID)
|
||||
void MACRO_FileOpen(void)
|
||||
{
|
||||
OPENFILENAME openfilename;
|
||||
CHAR szPath[MAX_PATHNAME_LEN];
|
||||
CHAR szDir[MAX_PATHNAME_LEN];
|
||||
CHAR szzFilter[2 * MAX_STRING_LEN + 100];
|
||||
LPSTR p = szzFilter;
|
||||
OPENFILENAME openfilename;
|
||||
CHAR szPath[MAX_PATHNAME_LEN];
|
||||
CHAR szDir[MAX_PATHNAME_LEN];
|
||||
CHAR szzFilter[2 * MAX_STRING_LEN + 100];
|
||||
LPSTR p = szzFilter;
|
||||
|
||||
LoadString(Globals.hInstance, 0X12B, p, MAX_STRING_LEN);
|
||||
p += strlen(p) + 1;
|
||||
lstrcpy(p, "*.hlp");
|
||||
p += strlen(p) + 1;
|
||||
LoadString(Globals.hInstance, 0x12A, p, MAX_STRING_LEN);
|
||||
p += strlen(p) + 1;
|
||||
lstrcpy(p, "*.*");
|
||||
p += strlen(p) + 1;
|
||||
*p = '\0';
|
||||
LoadString(Globals.hInstance, 0X12B, p, MAX_STRING_LEN);
|
||||
p += strlen(p) + 1;
|
||||
lstrcpy(p, "*.hlp");
|
||||
p += strlen(p) + 1;
|
||||
LoadString(Globals.hInstance, 0x12A, p, MAX_STRING_LEN);
|
||||
p += strlen(p) + 1;
|
||||
lstrcpy(p, "*.*");
|
||||
p += strlen(p) + 1;
|
||||
*p = '\0';
|
||||
|
||||
GetCurrentDirectory(sizeof(szDir), szDir);
|
||||
GetCurrentDirectory(sizeof(szDir), szDir);
|
||||
|
||||
szPath[0]='\0';
|
||||
szPath[0]='\0';
|
||||
|
||||
openfilename.lStructSize = 0;
|
||||
openfilename.hwndOwner = Globals.active_win->hMainWnd;
|
||||
openfilename.hInstance = Globals.hInstance;
|
||||
openfilename.lpstrFilter = szzFilter;
|
||||
openfilename.lpstrCustomFilter = 0;
|
||||
openfilename.nMaxCustFilter = 0;
|
||||
openfilename.nFilterIndex = 1;
|
||||
openfilename.lpstrFile = szPath;
|
||||
openfilename.nMaxFile = sizeof(szPath);
|
||||
openfilename.lpstrFileTitle = 0;
|
||||
openfilename.nMaxFileTitle = 0;
|
||||
openfilename.lpstrInitialDir = szDir;
|
||||
openfilename.lpstrTitle = 0;
|
||||
openfilename.Flags = 0;
|
||||
openfilename.nFileOffset = 0;
|
||||
openfilename.nFileExtension = 0;
|
||||
openfilename.lpstrDefExt = 0;
|
||||
openfilename.lCustData = 0;
|
||||
openfilename.lpfnHook = 0;
|
||||
openfilename.lpTemplateName = 0;
|
||||
openfilename.lStructSize = 0;
|
||||
openfilename.hwndOwner = Globals.active_win->hMainWnd;
|
||||
openfilename.hInstance = Globals.hInstance;
|
||||
openfilename.lpstrFilter = szzFilter;
|
||||
openfilename.lpstrCustomFilter = 0;
|
||||
openfilename.nMaxCustFilter = 0;
|
||||
openfilename.nFilterIndex = 1;
|
||||
openfilename.lpstrFile = szPath;
|
||||
openfilename.nMaxFile = sizeof(szPath);
|
||||
openfilename.lpstrFileTitle = 0;
|
||||
openfilename.nMaxFileTitle = 0;
|
||||
openfilename.lpstrInitialDir = szDir;
|
||||
openfilename.lpstrTitle = 0;
|
||||
openfilename.Flags = 0;
|
||||
openfilename.nFileOffset = 0;
|
||||
openfilename.nFileExtension = 0;
|
||||
openfilename.lpstrDefExt = 0;
|
||||
openfilename.lCustData = 0;
|
||||
openfilename.lpfnHook = 0;
|
||||
openfilename.lpTemplateName = 0;
|
||||
|
||||
if (GetOpenFileName(&openfilename))
|
||||
WINHELP_CreateHelpWindow(szPath, 0, "main", FALSE, 0, NULL, SW_SHOWNORMAL);
|
||||
if (GetOpenFileName(&openfilename))
|
||||
WINHELP_CreateHelpWindowByHash(szPath, 0, "main", FALSE, 0, NULL, SW_SHOWNORMAL);
|
||||
}
|
||||
|
||||
VOID MACRO_Find(VOID)
|
||||
void MACRO_Find(void)
|
||||
{
|
||||
fprintf(stderr, "Find()\n");
|
||||
WINE_FIXME("Find()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_Finder(VOID)
|
||||
void MACRO_Finder(void)
|
||||
{
|
||||
fprintf(stderr, "Finder()\n");
|
||||
WINE_FIXME("Finder()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_FloatingMenu(VOID)
|
||||
void MACRO_FloatingMenu(void)
|
||||
{
|
||||
fprintf(stderr, "FloatingMenu()\n");
|
||||
WINE_FIXME("FloatingMenu()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_Flush(VOID)
|
||||
void MACRO_Flush(void)
|
||||
{
|
||||
fprintf(stderr, "Flush()\n");
|
||||
WINE_FIXME("Flush()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_FocusWindow(LPCSTR str)
|
||||
void MACRO_FocusWindow(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "FocusWindow(\"%s\")\n", str);
|
||||
WINE_FIXME("FocusWindow(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_Generate(LPCSTR str, WPARAM w, LPARAM l)
|
||||
void MACRO_Generate(LPCSTR str, WPARAM w, LPARAM l)
|
||||
{
|
||||
fprintf(stderr, "Generate(\"%s\", %x, %lx)\n", str, w, l);
|
||||
WINE_FIXME("Generate(\"%s\", %x, %lx)\n", str, w, l);
|
||||
}
|
||||
|
||||
VOID MACRO_GotoMark(LPCSTR str)
|
||||
void MACRO_GotoMark(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "GotoMark(\"%s\")\n", str);
|
||||
WINE_FIXME("GotoMark(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_HelpOn(VOID)
|
||||
void MACRO_HelpOn(void)
|
||||
{
|
||||
MACRO_JumpContents((Globals.wVersion > 4) ? "winhelp32.hlp" : "winhelp.hlp", NULL);
|
||||
MACRO_JumpContents((Globals.wVersion > 4) ? "winhelp32.hlp" : "winhelp.hlp", NULL);
|
||||
}
|
||||
|
||||
VOID MACRO_HelpOnTop(VOID)
|
||||
void MACRO_HelpOnTop(void)
|
||||
{
|
||||
fprintf(stderr, "HelpOnTop()\n");
|
||||
WINE_FIXME("HelpOnTop()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_History(VOID)
|
||||
void MACRO_History(void)
|
||||
{
|
||||
fprintf(stderr, "History()\n");
|
||||
WINE_FIXME("History()\n");
|
||||
}
|
||||
|
||||
BOOL MACRO_InitMPrint(VOID)
|
||||
BOOL MACRO_InitMPrint(void)
|
||||
{
|
||||
fprintf(stderr, "InitMPrint()\n");
|
||||
return FALSE;
|
||||
WINE_FIXME("InitMPrint()\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
VOID MACRO_InsertItem(LPCSTR str1, LPCSTR str2, LPCSTR str3, LPCSTR str4, LONG u)
|
||||
void MACRO_InsertItem(LPCSTR str1, LPCSTR str2, LPCSTR str3, LPCSTR str4, LONG u)
|
||||
{
|
||||
fprintf(stderr, "InsertItem(\"%s\", \"%s\", \"%s\", \"%s\", %lu)\n", str1, str2, str3, str4, u);
|
||||
WINE_FIXME("InsertItem(\"%s\", \"%s\", \"%s\", \"%s\", %lu)\n", str1, str2, str3, str4, u);
|
||||
}
|
||||
|
||||
VOID MACRO_InsertMenu(LPCSTR str1, LPCSTR str2, LONG u)
|
||||
void MACRO_InsertMenu(LPCSTR str1, LPCSTR str2, LONG u)
|
||||
{
|
||||
fprintf(stderr, "InsertMenu(\"%s\", \"%s\", %lu)\n", str1, str2, u);
|
||||
WINE_FIXME("InsertMenu(\"%s\", \"%s\", %lu)\n", str1, str2, u);
|
||||
}
|
||||
|
||||
BOOL MACRO_IsBook(VOID)
|
||||
BOOL MACRO_IsBook(void)
|
||||
{
|
||||
fprintf(stderr, "IsBook()\n");
|
||||
return TRUE;
|
||||
WINE_FIXME("IsBook()\n");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL MACRO_IsMark(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "IsMark(\"%s\")\n", str);
|
||||
return FALSE;
|
||||
WINE_FIXME("IsMark(\"%s\")\n", str);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL MACRO_IsNotMark(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "IsNotMark(\"%s\")\n", str);
|
||||
return TRUE;
|
||||
WINE_FIXME("IsNotMark(\"%s\")\n", str);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
VOID MACRO_JumpContents(LPCSTR lpszPath, LPCSTR lpszWindow)
|
||||
void MACRO_JumpContents(LPCSTR lpszPath, LPCSTR lpszWindow)
|
||||
{
|
||||
WINHELP_CreateHelpWindow(lpszPath, 0, lpszWindow, FALSE, 0, NULL, SW_NORMAL);
|
||||
WINHELP_CreateHelpWindowByHash(lpszPath, 0, lpszWindow, FALSE, 0, NULL, SW_NORMAL);
|
||||
}
|
||||
|
||||
VOID MACRO_JumpContext(LPCSTR lpszPath, LPCSTR lpszWindow, LONG context)
|
||||
void MACRO_JumpContext(LPCSTR lpszPath, LPCSTR lpszWindow, LONG context)
|
||||
{
|
||||
fprintf(stderr, "JumpContext(\"%s\", \"%s\", %lu)\n", lpszPath, lpszWindow, context);
|
||||
WINE_FIXME("JumpContext(\"%s\", \"%s\", %lu)\n", lpszPath, lpszWindow, context);
|
||||
}
|
||||
|
||||
VOID MACRO_JumpHash(LPCSTR lpszPath, LPCSTR lpszWindow, LONG lHash)
|
||||
void MACRO_JumpHash(LPCSTR lpszPath, LPCSTR lpszWindow, LONG lHash)
|
||||
{
|
||||
WINHELP_CreateHelpWindow(lpszPath, lHash, lpszWindow, FALSE, 0, NULL, SW_NORMAL);
|
||||
WINHELP_CreateHelpWindowByHash(lpszPath, lHash, lpszWindow, FALSE, 0, NULL, SW_NORMAL);
|
||||
}
|
||||
|
||||
VOID MACRO_JumpHelpOn(VOID)
|
||||
void MACRO_JumpHelpOn(void)
|
||||
{
|
||||
fprintf(stderr, "JumpHelpOn()\n");
|
||||
WINE_FIXME("JumpHelpOn()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_JumpID(LPCSTR lpszPath, LPCSTR lpszWindow, LPCSTR topic_id)
|
||||
void MACRO_JumpID(LPCSTR lpszPath, LPCSTR lpszWindow, LPCSTR topic_id)
|
||||
{
|
||||
MACRO_JumpHash(lpszPath, lpszWindow, HLPFILE_Hash(topic_id));
|
||||
MACRO_JumpHash(lpszPath, lpszWindow, HLPFILE_Hash(topic_id));
|
||||
}
|
||||
|
||||
VOID MACRO_JumpKeyword(LPCSTR lpszPath, LPCSTR lpszWindow, LPCSTR keyword)
|
||||
void MACRO_JumpKeyword(LPCSTR lpszPath, LPCSTR lpszWindow, LPCSTR keyword)
|
||||
{
|
||||
fprintf(stderr, "JumpKeyword(\"%s\", \"%s\", \"%s\")\n", lpszPath, lpszWindow, keyword);
|
||||
WINE_FIXME("JumpKeyword(\"%s\", \"%s\", \"%s\")\n", lpszPath, lpszWindow, keyword);
|
||||
}
|
||||
|
||||
VOID MACRO_KLink(LPCSTR str1, LONG u, LPCSTR str2, LPCSTR str3)
|
||||
void MACRO_KLink(LPCSTR str1, LONG u, LPCSTR str2, LPCSTR str3)
|
||||
{
|
||||
fprintf(stderr, "KLink(\"%s\", %lu, \"%s\", \"%s\")\n", str1, u, str2, str3);
|
||||
WINE_FIXME("KLink(\"%s\", %lu, \"%s\", \"%s\")\n", str1, u, str2, str3);
|
||||
}
|
||||
|
||||
VOID MACRO_Menu(VOID)
|
||||
void MACRO_Menu(void)
|
||||
{
|
||||
fprintf(stderr, "Menu()\n");
|
||||
WINE_FIXME("Menu()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_MPrintHash(LONG u)
|
||||
void MACRO_MPrintHash(LONG u)
|
||||
{
|
||||
fprintf(stderr, "MPrintHash(%lu)\n", u);
|
||||
WINE_FIXME("MPrintHash(%lu)\n", u);
|
||||
}
|
||||
|
||||
VOID MACRO_MPrintID(LPCSTR str)
|
||||
void MACRO_MPrintID(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "MPrintID(\"%s\")\n", str);
|
||||
WINE_FIXME("MPrintID(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_Next(VOID)
|
||||
void MACRO_Next(void)
|
||||
{
|
||||
fprintf(stderr, "Next()\n");
|
||||
if (Globals.active_win->page->next)
|
||||
WINHELP_CreateHelpWindowByPage(Globals.active_win->page->next, "main", FALSE, 0, NULL, SW_NORMAL);
|
||||
}
|
||||
|
||||
VOID MACRO_NoShow(VOID)
|
||||
void MACRO_NoShow(void)
|
||||
{
|
||||
fprintf(stderr, "NoShow()\n");
|
||||
WINE_FIXME("NoShow()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_PopupContext(LPCSTR str, LONG u)
|
||||
void MACRO_PopupContext(LPCSTR str, LONG u)
|
||||
{
|
||||
fprintf(stderr, "PopupContext(\"%s\", %lu)\n", str, u);
|
||||
WINE_FIXME("PopupContext(\"%s\", %lu)\n", str, u);
|
||||
}
|
||||
|
||||
VOID MACRO_PopupHash(LPCSTR str, LONG u)
|
||||
void MACRO_PopupHash(LPCSTR str, LONG u)
|
||||
{
|
||||
fprintf(stderr, "PopupHash(\"%s\", %lu)\n", str, u);
|
||||
WINE_FIXME("PopupHash(\"%s\", %lu)\n", str, u);
|
||||
}
|
||||
|
||||
VOID MACRO_PopupId(LPCSTR str1, LPCSTR str2)
|
||||
void MACRO_PopupId(LPCSTR str1, LPCSTR str2)
|
||||
{
|
||||
fprintf(stderr, "PopupId(\"%s\", \"%s\")\n", str1, str2);
|
||||
WINE_FIXME("PopupId(\"%s\", \"%s\")\n", str1, str2);
|
||||
}
|
||||
|
||||
VOID MACRO_PositionWindow(LONG i1, LONG i2, LONG u1, LONG u2, LONG u3, LPCSTR str)
|
||||
void MACRO_PositionWindow(LONG i1, LONG i2, LONG u1, LONG u2, LONG u3, LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "PositionWindow(%li, %li, %lu, %lu, %lu, \"%s\")\n", i1, i2, u1, u2, u3, str);
|
||||
WINE_FIXME("PositionWindow(%li, %li, %lu, %lu, %lu, \"%s\")\n", i1, i2, u1, u2, u3, str);
|
||||
}
|
||||
|
||||
VOID MACRO_Prev(VOID)
|
||||
void MACRO_Prev(void)
|
||||
{
|
||||
fprintf(stderr, "Prev()\n");
|
||||
if (Globals.active_win->page->prev)
|
||||
WINHELP_CreateHelpWindowByPage(Globals.active_win->page->prev, "main", FALSE, 0, NULL, SW_NORMAL);
|
||||
}
|
||||
|
||||
VOID MACRO_Print(VOID)
|
||||
void MACRO_Print(void)
|
||||
{
|
||||
PRINTDLG printer;
|
||||
|
||||
|
@ -496,97 +498,93 @@ VOID MACRO_Print(VOID)
|
|||
printer.hSetupTemplate = 0;
|
||||
|
||||
if (PrintDlgA(&printer)) {
|
||||
fprintf(stderr, "Print()\n");
|
||||
};
|
||||
WINE_FIXME("Print()\n");
|
||||
}
|
||||
}
|
||||
|
||||
VOID MACRO_PrinterSetup(VOID)
|
||||
void MACRO_PrinterSetup(void)
|
||||
{
|
||||
fprintf(stderr, "PrinterSetup()\n");
|
||||
WINE_FIXME("PrinterSetup()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_RegisterRoutine(LPCSTR str1, LPCSTR str2, LPCSTR str3)
|
||||
void MACRO_RegisterRoutine(LPCSTR str1, LPCSTR str2, LPCSTR str3)
|
||||
{
|
||||
fprintf(stderr, "RegisterRoutine(\"%s\", \"%s\", \"%s\")\n", str1, str2, str3);
|
||||
WINE_FIXME("RegisterRoutine(\"%s\", \"%s\", \"%s\")\n", str1, str2, str3);
|
||||
}
|
||||
|
||||
VOID MACRO_RemoveAccelerator(LONG u1, LONG u2)
|
||||
void MACRO_RemoveAccelerator(LONG u1, LONG u2)
|
||||
{
|
||||
fprintf(stderr, "RemoveAccelerator(%lu, %lu)\n", u1, u2);
|
||||
WINE_FIXME("RemoveAccelerator(%lu, %lu)\n", u1, u2);
|
||||
}
|
||||
|
||||
VOID MACRO_ResetMenu(VOID)
|
||||
void MACRO_ResetMenu(void)
|
||||
{
|
||||
fprintf(stderr, "ResetMenu()\n");
|
||||
WINE_FIXME("ResetMenu()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_SaveMark(LPCSTR str)
|
||||
void MACRO_SaveMark(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "SaveMark(\"%s\")\n", str);
|
||||
WINE_FIXME("SaveMark(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_Search(VOID)
|
||||
void MACRO_Search(void)
|
||||
{
|
||||
fprintf(stderr, "Search()\n");
|
||||
WINE_FIXME("Search()\n");
|
||||
}
|
||||
|
||||
VOID MACRO_SetContents(LPCSTR str, LONG u)
|
||||
void MACRO_SetContents(LPCSTR str, LONG u)
|
||||
{
|
||||
fprintf(stderr, "SetContents(\"%s\", %lu)\n", str, u);
|
||||
WINE_FIXME("SetContents(\"%s\", %lu)\n", str, u);
|
||||
}
|
||||
|
||||
VOID MACRO_SetHelpOnFile(LPCSTR str)
|
||||
void MACRO_SetHelpOnFile(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "SetHelpOnFile(\"%s\")\n", str);
|
||||
WINE_FIXME("SetHelpOnFile(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_SetPopupColor(LONG u1, LONG u2, LONG u3)
|
||||
void MACRO_SetPopupColor(LONG u1, LONG u2, LONG u3)
|
||||
{
|
||||
fprintf(stderr, "SetPopupColor(%lu, %lu, %lu)\n", u1, u2, u3);
|
||||
WINE_FIXME("SetPopupColor(%lu, %lu, %lu)\n", u1, u2, u3);
|
||||
}
|
||||
|
||||
VOID MACRO_ShellExecute(LPCSTR str1, LPCSTR str2, LONG u1, LONG u2, LPCSTR str3, LPCSTR str4)
|
||||
void MACRO_ShellExecute(LPCSTR str1, LPCSTR str2, LONG u1, LONG u2, LPCSTR str3, LPCSTR str4)
|
||||
{
|
||||
fprintf(stderr, "ShellExecute(\"%s\", \"%s\", %lu, %lu, \"%s\", \"%s\")\n", str1, str2, u1, u2, str3, str4);
|
||||
WINE_FIXME("ShellExecute(\"%s\", \"%s\", %lu, %lu, \"%s\", \"%s\")\n", str1, str2, u1, u2, str3, str4);
|
||||
}
|
||||
|
||||
VOID MACRO_ShortCut(LPCSTR str1, LPCSTR str2, WPARAM w, LPARAM l, LPCSTR str)
|
||||
void MACRO_ShortCut(LPCSTR str1, LPCSTR str2, WPARAM w, LPARAM l, LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "ShortCut(\"%s\", \"%s\", %x, %lx, \"%s\")\n", str1, str2, w, l, str);
|
||||
WINE_FIXME("ShortCut(\"%s\", \"%s\", %x, %lx, \"%s\")\n", str1, str2, w, l, str);
|
||||
}
|
||||
|
||||
VOID MACRO_TCard(LONG u)
|
||||
void MACRO_TCard(LONG u)
|
||||
{
|
||||
fprintf(stderr, "TCard(%lu)\n", u);
|
||||
WINE_FIXME("TCard(%lu)\n", u);
|
||||
}
|
||||
|
||||
VOID MACRO_Test(LONG u)
|
||||
void MACRO_Test(LONG u)
|
||||
{
|
||||
fprintf(stderr, "Test(%lu)\n", u);
|
||||
WINE_FIXME("Test(%lu)\n", u);
|
||||
}
|
||||
|
||||
BOOL MACRO_TestALink(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "TestALink(\"%s\")\n", str);
|
||||
return FALSE;
|
||||
WINE_FIXME("TestALink(\"%s\")\n", str);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL MACRO_TestKLink(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "TestKLink(\"%s\")\n", str);
|
||||
return FALSE;
|
||||
WINE_FIXME("TestKLink(\"%s\")\n", str);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
VOID MACRO_UncheckItem(LPCSTR str)
|
||||
void MACRO_UncheckItem(LPCSTR str)
|
||||
{
|
||||
fprintf(stderr, "UncheckItem(\"%s\")\n", str);
|
||||
WINE_FIXME("UncheckItem(\"%s\")\n", str);
|
||||
}
|
||||
|
||||
VOID MACRO_UpdateWindow(LPCSTR str1, LPCSTR str2)
|
||||
void MACRO_UpdateWindow(LPCSTR str1, LPCSTR str2)
|
||||
{
|
||||
fprintf(stderr, "UpdateWindow(\"%s\", \"%s\")\n", str1, str2);
|
||||
WINE_FIXME("UpdateWindow(\"%s\", \"%s\")\n", str1, str2);
|
||||
}
|
||||
|
||||
/* Local Variables: */
|
||||
/* c-file-style: "GNU" */
|
||||
/* End: */
|
||||
|
|
|
@ -19,15 +19,20 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
%}
|
||||
%x quote dquote
|
||||
%x quote
|
||||
%{
|
||||
#include <assert.h>
|
||||
#include "macro.h"
|
||||
#include "y.tab.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(winhelp);
|
||||
|
||||
static LPCSTR macroptr;
|
||||
static LPSTR strptr;
|
||||
static HGLOBAL hStringBuffer = 0;
|
||||
static INT nested_quotes = 0;
|
||||
static int quote_stack[32];
|
||||
static int quote_stk_idx = 0;
|
||||
|
||||
#define YY_INPUT(buf,result,max_size)\
|
||||
if ((result = *macroptr ? 1 : 0)) buf[0] = *macroptr++;
|
||||
|
@ -35,181 +40,193 @@ static INT nested_quotes = 0;
|
|||
#define YY_NO_UNPUT
|
||||
%}
|
||||
%%
|
||||
About yylval.void_function_void = MACRO_About; return VOID_FUNCTION_VOID;
|
||||
About yylval.void_function_void = MACRO_About; return VOID_FUNCTION_VOID;
|
||||
AddAccelerator|AA yylval.void_function_2uint_string = MACRO_AddAccelerator; return VOID_FUNCTION_2UINT_STRING;
|
||||
ALink|AL yylval.void_function_string_uint_string = MACRO_ALink; return VOID_FUNCTION_STRING_UINT_STRING;
|
||||
ALink|AL yylval.void_function_string_uint_string = MACRO_ALink; return VOID_FUNCTION_STRING_UINT_STRING;
|
||||
Annotate yylval.void_function_void = MACRO_Annotate; return VOID_FUNCTION_VOID;
|
||||
AppendItem yylval.void_function_4string = MACRO_AppendItem; return VOID_FUNCTION_4STRING;
|
||||
AppendItem yylval.void_function_4string = MACRO_AppendItem; return VOID_FUNCTION_4STRING;
|
||||
Back yylval.void_function_void = MACRO_Back; return VOID_FUNCTION_VOID;
|
||||
BackFlush|BF yylval.void_function_void = MACRO_BackFlush; return VOID_FUNCTION_VOID;
|
||||
BookmarkDefine yylval.void_function_void = MACRO_BookmarkDefine; return VOID_FUNCTION_VOID;
|
||||
BookmarkDefine yylval.void_function_void = MACRO_BookmarkDefine; return VOID_FUNCTION_VOID;
|
||||
BookmarkMore yylval.void_function_void = MACRO_BookmarkMore; return VOID_FUNCTION_VOID;
|
||||
BrowseButtons yylval.void_function_void = MACRO_BrowseButtons; return VOID_FUNCTION_VOID;
|
||||
BrowseButtons yylval.void_function_void = MACRO_BrowseButtons; return VOID_FUNCTION_VOID;
|
||||
ChangeButtonBinding|CBB yylval.void_function_2string = MACRO_ChangeButtonBinding; return VOID_FUNCTION_2STRING;
|
||||
ChangeEnable|CE yylval.void_function_2string = MACRO_ChangeEnable; return VOID_FUNCTION_2STRING;
|
||||
ChangeEnable|CE yylval.void_function_2string = MACRO_ChangeEnable; return VOID_FUNCTION_2STRING;
|
||||
ChangeItemBinding|CIB yylval.void_function_2string = MACRO_ChangeItemBinding; return VOID_FUNCTION_2STRING;
|
||||
CheckItem|CI yylval.void_function_string = MACRO_CheckItem; return VOID_FUNCTION_STRING;
|
||||
CloseSecondarys|CS yylval.void_function_void = MACRO_CloseSecondarys; return VOID_FUNCTION_VOID;
|
||||
CloseWindow|CW yylval.void_function_string = MACRO_CloseWindow; return VOID_FUNCTION_STRING;
|
||||
Compare yylval.void_function_string = MACRO_Compare; return VOID_FUNCTION_STRING;
|
||||
CloseSecondarys|CS yylval.void_function_void = MACRO_CloseSecondarys; return VOID_FUNCTION_VOID;
|
||||
CloseWindow|CW yylval.void_function_string = MACRO_CloseWindow; return VOID_FUNCTION_STRING;
|
||||
Compare yylval.void_function_string = MACRO_Compare; return VOID_FUNCTION_STRING;
|
||||
Contents yylval.void_function_void = MACRO_Contents; return VOID_FUNCTION_VOID;
|
||||
ControlPanel yylval.void_function_2string_uint = MACRO_ControlPanel; return VOID_FUNCTION_2STRING_UINT;
|
||||
ControlPanel yylval.void_function_2string_uint = MACRO_ControlPanel; return VOID_FUNCTION_2STRING_UINT;
|
||||
CopyDialog yylval.void_function_void = MACRO_CopyDialog; return VOID_FUNCTION_VOID;
|
||||
CopyTopic|CT yylval.void_function_void = MACRO_CopyTopic; return VOID_FUNCTION_VOID;
|
||||
CreateButton|CB yylval.void_function_3string = MACRO_CreateButton; return VOID_FUNCTION_3STRING;
|
||||
CreateButton|CB yylval.void_function_3string = MACRO_CreateButton; return VOID_FUNCTION_3STRING;
|
||||
DeleteItem yylval.void_function_string = MACRO_DeleteItem; return VOID_FUNCTION_STRING;
|
||||
DeleteMark yylval.void_function_string = MACRO_DeleteMark; return VOID_FUNCTION_STRING;
|
||||
DestroyButton yylval.void_function_string = MACRO_DestroyButton; return VOID_FUNCTION_STRING;
|
||||
DisableButton|DB yylval.void_function_string = MACRO_DisableButton; return VOID_FUNCTION_STRING;
|
||||
DisableItem|DI yylval.void_function_string = MACRO_DisableItem; return VOID_FUNCTION_STRING;
|
||||
EnableButton|EB yylval.void_function_string = MACRO_EnableButton; return VOID_FUNCTION_STRING;
|
||||
DestroyButton yylval.void_function_string = MACRO_DestroyButton; return VOID_FUNCTION_STRING;
|
||||
DisableButton|DB yylval.void_function_string = MACRO_DisableButton; return VOID_FUNCTION_STRING;
|
||||
DisableItem|DI yylval.void_function_string = MACRO_DisableItem; return VOID_FUNCTION_STRING;
|
||||
EnableButton|EB yylval.void_function_string = MACRO_EnableButton; return VOID_FUNCTION_STRING;
|
||||
EnableItem|EI yylval.void_function_string = MACRO_EnableItem; return VOID_FUNCTION_STRING;
|
||||
EndMPrint yylval.void_function_void = MACRO_EndMPrint; return VOID_FUNCTION_VOID;
|
||||
ExecFile|EF yylval.void_function_2string_uint_string = MACRO_ExecFile; return VOID_FUNCTION_2STRING_UINT_STRING;
|
||||
ExecProgram|EP yylval.void_function_string_uint = MACRO_ExecProgram; return VOID_FUNCTION_STRING_UINT;
|
||||
ExecProgram|EP yylval.void_function_string_uint = MACRO_ExecProgram; return VOID_FUNCTION_STRING_UINT;
|
||||
Exit yylval.void_function_void = MACRO_Exit; return VOID_FUNCTION_VOID;
|
||||
ExtAbleItem yylval.void_function_string_uint = MACRO_ExtAbleItem; return VOID_FUNCTION_STRING_UINT;
|
||||
ExtAbleItem yylval.void_function_string_uint = MACRO_ExtAbleItem; return VOID_FUNCTION_STRING_UINT;
|
||||
ExtInsertItem yylval.void_function_4string_2uint = MACRO_ExtInsertItem; return VOID_FUNCTION_4STRING_2UINT;
|
||||
ExtInsertMenu yylval.void_function_3string_2uint = MACRO_ExtInsertMenu; return VOID_FUNCTION_3STRING_2UINT;
|
||||
FileExist|FE yylval.bool_function_string = MACRO_FileExist; return BOOL_FUNCTION_STRING;
|
||||
FileOpen|FO yylval.void_function_void = MACRO_FileOpen; return VOID_FUNCTION_VOID;
|
||||
Find yylval.void_function_void = MACRO_Find; return VOID_FUNCTION_VOID;
|
||||
Finder|FD yylval.void_function_void = MACRO_Finder; return VOID_FUNCTION_VOID;
|
||||
Finder|FD yylval.void_function_void = MACRO_Finder; return VOID_FUNCTION_VOID;
|
||||
FloatingMenu yylval.void_function_void = MACRO_FloatingMenu; return VOID_FUNCTION_VOID;
|
||||
Flush|FH yylval.void_function_void = MACRO_Flush; return VOID_FUNCTION_VOID;
|
||||
FocusWindow yylval.void_function_string = MACRO_FocusWindow; return VOID_FUNCTION_STRING;
|
||||
Flush|FH yylval.void_function_void = MACRO_Flush; return VOID_FUNCTION_VOID;
|
||||
FocusWindow yylval.void_function_string = MACRO_FocusWindow; return VOID_FUNCTION_STRING;
|
||||
Generate yylval.void_function_string_wparam_lparam = MACRO_Generate; return VOID_FUNCTION_STRING_WPARAM_LPARAM;
|
||||
GotoMark yylval.void_function_string = MACRO_GotoMark; return VOID_FUNCTION_STRING;
|
||||
HelpOn yylval.void_function_void = MACRO_HelpOn; return VOID_FUNCTION_VOID;
|
||||
HelpOn yylval.void_function_void = MACRO_HelpOn; return VOID_FUNCTION_VOID;
|
||||
HelpOnTop yylval.void_function_void = MACRO_HelpOnTop; return VOID_FUNCTION_VOID;
|
||||
History yylval.void_function_void = MACRO_History; return VOID_FUNCTION_VOID;
|
||||
History yylval.void_function_void = MACRO_History; return VOID_FUNCTION_VOID;
|
||||
IfThen|IF return IF_THEN;
|
||||
IfThenElse|IE return IF_THEN_ELSE;
|
||||
InitMPrint yylval.bool_function_void = MACRO_InitMPrint; return BOOL_FUNCTION_VOID;
|
||||
InsertItem yylval.void_function_4string_uint = MACRO_InsertItem; return VOID_FUNCTION_4STRING_UINT;
|
||||
InsertMenu yylval.void_function_2string_uint = MACRO_InsertMenu; return VOID_FUNCTION_2STRING_UINT;
|
||||
IsBook yylval.bool_function_void = MACRO_IsBook; return BOOL_FUNCTION_VOID;
|
||||
IsMark yylval.bool_function_string = MACRO_IsMark; return BOOL_FUNCTION_STRING;
|
||||
InsertItem yylval.void_function_4string_uint = MACRO_InsertItem; return VOID_FUNCTION_4STRING_UINT;
|
||||
InsertMenu yylval.void_function_2string_uint = MACRO_InsertMenu; return VOID_FUNCTION_2STRING_UINT;
|
||||
IsBook yylval.bool_function_void = MACRO_IsBook; return BOOL_FUNCTION_VOID;
|
||||
IsMark yylval.bool_function_string = MACRO_IsMark; return BOOL_FUNCTION_STRING;
|
||||
IsNotMark|NM yylval.bool_function_string = MACRO_IsNotMark; return BOOL_FUNCTION_STRING;
|
||||
JumpContents yylval.void_function_2string = MACRO_JumpContents; return VOID_FUNCTION_FILE_WIN;
|
||||
JumpContext|JC yylval.void_function_2string_uint = MACRO_JumpContext; return VOID_FUNCTION_FILE_WIN_UINT;
|
||||
JumpHash|JH yylval.void_function_2string_uint = MACRO_JumpHash; return VOID_FUNCTION_FILE_WIN_UINT;
|
||||
JumpContents yylval.void_function_2string = MACRO_JumpContents; return VOID_FUNCTION_FILE_WIN;
|
||||
JumpContext|JC yylval.void_function_2string_uint = MACRO_JumpContext; return VOID_FUNCTION_FILE_WIN_UINT;
|
||||
JumpHash|JH yylval.void_function_2string_uint = MACRO_JumpHash; return VOID_FUNCTION_FILE_WIN_UINT;
|
||||
JumpHelpOn yylval.void_function_void = MACRO_JumpHelpOn; return VOID_FUNCTION_VOID;
|
||||
JumpID|JI yylval.void_function_3string = MACRO_JumpID; return VOID_FUNCTION_FILE_WIN_STRING;
|
||||
JumpKeyword|JK yylval.void_function_3string = MACRO_JumpKeyword; return VOID_FUNCTION_FILE_WIN_STRING;
|
||||
KLink|KL yylval.void_function_string_uint_2string = MACRO_KLink; return VOID_FUNCTION_STRING_UINT_2STRING;
|
||||
JumpID|JI yylval.void_function_3string = MACRO_JumpID; return VOID_FUNCTION_FILE_WIN_STRING;
|
||||
JumpKeyword|JK yylval.void_function_3string = MACRO_JumpKeyword; return VOID_FUNCTION_FILE_WIN_STRING;
|
||||
KLink|KL yylval.void_function_string_uint_2string = MACRO_KLink; return VOID_FUNCTION_STRING_UINT_2STRING;
|
||||
Menu|MU yylval.void_function_void = MACRO_Menu; return VOID_FUNCTION_VOID;
|
||||
MPrintHash yylval.void_function_uint = MACRO_MPrintHash; return VOID_FUNCTION_UINT;
|
||||
MPrintID yylval.void_function_string = MACRO_MPrintID; return VOID_FUNCTION_STRING;
|
||||
Next yylval.void_function_void = MACRO_Next; return VOID_FUNCTION_VOID;
|
||||
NoShow yylval.void_function_void = MACRO_NoShow; return VOID_FUNCTION_VOID;
|
||||
NoShow yylval.void_function_void = MACRO_NoShow; return VOID_FUNCTION_VOID;
|
||||
Not return NOT;
|
||||
PopupContext|PC yylval.void_function_string_uint = MACRO_PopupContext; return VOID_FUNCTION_STRING_UINT;
|
||||
PopupHash yylval.void_function_string_uint = MACRO_PopupHash; return VOID_FUNCTION_STRING_UINT;
|
||||
PopupId|PI yylval.void_function_2string = MACRO_PopupId; return VOID_FUNCTION_2STRING;
|
||||
PopupContext|PC yylval.void_function_string_uint = MACRO_PopupContext; return VOID_FUNCTION_STRING_UINT;
|
||||
PopupHash yylval.void_function_string_uint = MACRO_PopupHash; return VOID_FUNCTION_STRING_UINT;
|
||||
PopupId|PI yylval.void_function_2string = MACRO_PopupId; return VOID_FUNCTION_2STRING;
|
||||
PositionWindow|PW yylval.void_function_2int_3uint_string = MACRO_PositionWindow; return VOID_FUNCTION_2INT_3UINT_STRING;
|
||||
Prev yylval.void_function_void = MACRO_Prev; return VOID_FUNCTION_VOID;
|
||||
Print yylval.void_function_void = MACRO_Print; return VOID_FUNCTION_VOID;
|
||||
Print yylval.void_function_void = MACRO_Print; return VOID_FUNCTION_VOID;
|
||||
PrinterSetup yylval.void_function_void = MACRO_PrinterSetup; return VOID_FUNCTION_VOID;
|
||||
RegisterRoutine|RR yylval.void_function_3string = MACRO_RegisterRoutine; return VOID_FUNCTION_3STRING;
|
||||
RegisterRoutine|RR yylval.void_function_3string = MACRO_RegisterRoutine; return VOID_FUNCTION_3STRING;
|
||||
RemoveAccelerator|RA yylval.void_function_2uint = MACRO_RemoveAccelerator; return VOID_FUNCTION_2UINT;
|
||||
ResetMenu yylval.void_function_void = MACRO_ResetMenu; return VOID_FUNCTION_VOID;
|
||||
SaveMark yylval.void_function_string = MACRO_SaveMark; return VOID_FUNCTION_STRING;
|
||||
Search yylval.void_function_void = MACRO_Search; return VOID_FUNCTION_VOID;
|
||||
SetContents yylval.void_function_string_uint = MACRO_SetContents; return VOID_FUNCTION_STRING_UINT;
|
||||
SetHelpOnFile yylval.void_function_string = MACRO_SetHelpOnFile; return VOID_FUNCTION_STRING;
|
||||
SetPopupColor|SPC yylval.void_function_3uint = MACRO_SetPopupColor; return VOID_FUNCTION_3UINT;
|
||||
ShellExecute|SE yylval.void_function_2string_2uint_2string = MACRO_ShellExecute; return VOID_FUNCTION_2STRING_2UINT_2STRING;
|
||||
ShortCut|SH yylval.void_function_2string_wparam_lparam_string = MACRO_ShortCut; return VOID_FUNCTION_2STRING_WPARAM_LPARAM_STRING;
|
||||
TCard yylval.void_function_uint = MACRO_TCard; return VOID_FUNCTION_UINT;
|
||||
Search yylval.void_function_void = MACRO_Search; return VOID_FUNCTION_VOID;
|
||||
SetContents yylval.void_function_string_uint = MACRO_SetContents; return VOID_FUNCTION_STRING_UINT;
|
||||
SetHelpOnFile yylval.void_function_string = MACRO_SetHelpOnFile; return VOID_FUNCTION_STRING;
|
||||
SetPopupColor|SPC yylval.void_function_3uint = MACRO_SetPopupColor; return VOID_FUNCTION_3UINT;
|
||||
ShellExecute|SE yylval.void_function_2string_2uint_2string = MACRO_ShellExecute; return VOID_FUNCTION_2STRING_2UINT_2STRING;
|
||||
ShortCut|SH yylval.void_function_2string_wparam_lparam_string = MACRO_ShortCut; return VOID_FUNCTION_2STRING_WPARAM_LPARAM_STRING;
|
||||
TCard yylval.void_function_uint = MACRO_TCard; return VOID_FUNCTION_UINT;
|
||||
Test yylval.void_function_uint = MACRO_Test; return VOID_FUNCTION_UINT;
|
||||
TestALink yylval.bool_function_string = MACRO_TestALink; return BOOL_FUNCTION_STRING;
|
||||
TestKLink yylval.bool_function_string = MACRO_TestKLink; return BOOL_FUNCTION_STRING;
|
||||
UncheckItem|UI yylval.void_function_string = MACRO_UncheckItem; return VOID_FUNCTION_STRING;
|
||||
UpdateWindow|UW yylval.void_function_2string = MACRO_UpdateWindow; return VOID_FUNCTION_2STRING;
|
||||
UncheckItem|UI yylval.void_function_string = MACRO_UncheckItem; return VOID_FUNCTION_STRING;
|
||||
UpdateWindow|UW yylval.void_function_2string = MACRO_UpdateWindow; return VOID_FUNCTION_2STRING;
|
||||
|
||||
[-+]?[0-9]+ yylval.integer = strtol(yytext, NULL, 10); return INTEGER;
|
||||
[-+]?0[xX][0-9a-f]+ yylval.integer = strtol(yytext, NULL, 16); return INTEGER;
|
||||
|
||||
\` |
|
||||
\" {
|
||||
if (!hStringBuffer)
|
||||
{
|
||||
hStringBuffer = GlobalAlloc(GMEM_FIXED, strlen(macroptr));
|
||||
strptr = GlobalLock(hStringBuffer);
|
||||
}
|
||||
yylval.string = strptr;
|
||||
BEGIN (yytext[0] == '`' ? quote : dquote);
|
||||
}
|
||||
|
||||
<quote>\` {
|
||||
*strptr++ = yytext[0];
|
||||
nested_quotes++;
|
||||
}
|
||||
|
||||
<quote>\' |
|
||||
<dquote>\" {
|
||||
if (nested_quotes)
|
||||
{
|
||||
nested_quotes--;
|
||||
*strptr++ = yytext[0];
|
||||
}
|
||||
else
|
||||
{
|
||||
BEGIN INITIAL;
|
||||
*strptr++ = '\0';
|
||||
return tSTRING;
|
||||
}
|
||||
}
|
||||
|
||||
<quote,dquote>. *strptr++ = yytext[0];
|
||||
<quote,dquote>\\. *strptr++ = yytext[1];
|
||||
|
||||
<quote,dquote><<EOF>> return 0;
|
||||
\` |
|
||||
\" |
|
||||
\' |
|
||||
<quote>\` |
|
||||
<quote>\" |
|
||||
<quote>\' {
|
||||
if (quote_stk_idx == 0 ||
|
||||
(yytext[0] == '\"' && quote_stack[quote_stk_idx - 1] != '\"') ||
|
||||
(yytext[0] == '`'))
|
||||
{
|
||||
/* opening a new one */
|
||||
if (quote_stk_idx == 0)
|
||||
{
|
||||
strptr = HeapAlloc(GetProcessHeap(), 0, strlen(macroptr) + 1);
|
||||
yylval.string = strptr;
|
||||
BEGIN(quote);
|
||||
}
|
||||
else *strptr++ = yytext[0];
|
||||
quote_stack[quote_stk_idx++] = yytext[0];
|
||||
assert(quote_stk_idx < sizeof(quote_stack) / sizeof(quote_stack[0]));
|
||||
}
|
||||
else
|
||||
{
|
||||
if (yytext[0] == '`') assert(0);
|
||||
/* close the current quote */
|
||||
if (--quote_stk_idx == 0)
|
||||
{
|
||||
BEGIN INITIAL;
|
||||
*strptr++ = '\0';
|
||||
return tSTRING;
|
||||
}
|
||||
else *strptr++ = yytext[0];
|
||||
}
|
||||
}
|
||||
|
||||
<quote>. *strptr++ = yytext[0];
|
||||
<quote>\\. *strptr++ = yytext[1];
|
||||
<quote><<EOF>> return 0;
|
||||
|
||||
" "
|
||||
|
||||
. return yytext[0];
|
||||
. return yytext[0];
|
||||
%%
|
||||
#include "winhelp.h"
|
||||
static CHAR szTestMacro[256];
|
||||
|
||||
static LRESULT CALLBACK MACRO_TestDialogProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
if (msg == WM_COMMAND && wParam == IDOK)
|
||||
if (msg == WM_COMMAND && wParam == IDOK)
|
||||
{
|
||||
GetDlgItemText(hDlg, 99, szTestMacro, sizeof(szTestMacro));
|
||||
EndDialog(hDlg, IDOK);
|
||||
return TRUE;
|
||||
GetDlgItemText(hDlg, 99, szTestMacro, sizeof(szTestMacro));
|
||||
EndDialog(hDlg, IDOK);
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
VOID MACRO_ExecuteMacro(LPCSTR macro)
|
||||
void MACRO_ExecuteMacro(LPCSTR macro)
|
||||
{
|
||||
if (!lstrcmpi(macro, "MacroTest"))
|
||||
WINE_TRACE("%s\n", wine_dbgstr_a(macro));
|
||||
if (!lstrcmpi(macro, "MacroTest"))
|
||||
{
|
||||
WNDPROC lpfnDlg = MakeProcInstance(MACRO_TestDialogProc, Globals.hInstance);
|
||||
DialogBox(Globals.hInstance, STRING_DIALOG_TEST, Globals.active_win->hMainWnd, (DLGPROC)lpfnDlg);
|
||||
FreeProcInstance(lpfnDlg);
|
||||
macro = szTestMacro;
|
||||
WNDPROC lpfnDlg = MakeProcInstance(MACRO_TestDialogProc, Globals.hInstance);
|
||||
DialogBox(Globals.hInstance, STRING_DIALOG_TEST, Globals.active_win->hMainWnd, (DLGPROC)lpfnDlg);
|
||||
FreeProcInstance(lpfnDlg);
|
||||
macro = szTestMacro;
|
||||
}
|
||||
|
||||
macroptr = macro;
|
||||
macroptr = macro;
|
||||
|
||||
yyparse();
|
||||
yyparse();
|
||||
|
||||
if (hStringBuffer) GlobalFree(hStringBuffer);
|
||||
hStringBuffer = 0;
|
||||
if (strptr)
|
||||
{
|
||||
HeapFree(GetProcessHeap(), 0, strptr);
|
||||
strptr = NULL;
|
||||
}
|
||||
quote_stk_idx = 0;
|
||||
}
|
||||
|
||||
void yyerror (const char *s)
|
||||
void yyerror(const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s\n", s);
|
||||
nested_quotes = 0;
|
||||
BEGIN INITIAL;
|
||||
yyrestart(yyin);
|
||||
WINE_WARN("Error while parsing: %s\n", s);
|
||||
BEGIN INITIAL;
|
||||
yyrestart(yyin);
|
||||
if (strptr)
|
||||
{
|
||||
HeapFree(GetProcessHeap(), 0, strptr);
|
||||
strptr = NULL;
|
||||
}
|
||||
quote_stk_idx = 0;
|
||||
}
|
||||
|
||||
#ifndef yywrap
|
||||
|
|
|
@ -97,83 +97,83 @@ macrosep: ';' |
|
|||
':' ;
|
||||
|
||||
macro: /* Empty */ |
|
||||
IF_THEN '(' bool_macro ',' {if (! $3) skip++;}
|
||||
macrostring ')' {if (! $3) skip--;} |
|
||||
IF_THEN_ELSE '(' bool_macro ',' {if (! $3) skip++;}
|
||||
macrostring ',' {if (! $3) skip--; else skip++;}
|
||||
macrostring ')' {if ( $3) skip--;} |
|
||||
IF_THEN '(' bool_macro ',' {if (!$3) skip++;}
|
||||
macrostring ')' {if (!$3) skip--;} |
|
||||
IF_THEN_ELSE '(' bool_macro ',' {if (!$3) skip++;}
|
||||
macrostring ',' {if (!$3) skip--; else skip++;}
|
||||
macrostring ')' {if ( $3) skip--;} |
|
||||
VOID_FUNCTION_VOID
|
||||
'(' ')'
|
||||
{if (! skip) (*$1)();} |
|
||||
{if (!skip) (*$1)();} |
|
||||
VOID_FUNCTION_STRING
|
||||
'(' tSTRING ')'
|
||||
{if (! skip) (*$1)($3);} |
|
||||
{if (!skip) (*$1)($3);} |
|
||||
VOID_FUNCTION_2STRING
|
||||
'(' tSTRING ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5);} |
|
||||
{if (!skip) (*$1)($3, $5);} |
|
||||
VOID_FUNCTION_2STRING_UINT
|
||||
'(' tSTRING ',' tSTRING ',' INTEGER ')'
|
||||
{if (! skip) (*$1)($3, $5, $7);} |
|
||||
{if (!skip) (*$1)($3, $5, $7);} |
|
||||
VOID_FUNCTION_2STRING_UINT_STRING
|
||||
'(' tSTRING ',' tSTRING ',' INTEGER ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9);} |
|
||||
VOID_FUNCTION_2STRING_2UINT_2STRING
|
||||
'(' tSTRING ',' tSTRING ',' INTEGER ',' INTEGER ',' tSTRING ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9, $11, $13);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9, $11, $13);} |
|
||||
VOID_FUNCTION_2STRING_WPARAM_LPARAM_STRING
|
||||
'(' tSTRING ',' tSTRING ',' INTEGER ',' INTEGER ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9, $11);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9, $11);} |
|
||||
VOID_FUNCTION_3STRING
|
||||
'(' tSTRING ',' tSTRING ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7);} |
|
||||
{if (!skip) (*$1)($3, $5, $7);} |
|
||||
VOID_FUNCTION_3STRING_2UINT
|
||||
'(' tSTRING ',' tSTRING ',' tSTRING ',' INTEGER ',' INTEGER ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9, $11);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9, $11);} |
|
||||
VOID_FUNCTION_4STRING
|
||||
'(' tSTRING ',' tSTRING ',' tSTRING ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9);} |
|
||||
VOID_FUNCTION_4STRING_UINT
|
||||
'(' tSTRING ',' tSTRING ',' tSTRING ',' tSTRING ',' INTEGER')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9, $11);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9, $11);} |
|
||||
VOID_FUNCTION_4STRING_2UINT
|
||||
'(' tSTRING ',' tSTRING ',' tSTRING ',' tSTRING ',' INTEGER ',' INTEGER')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9, $11, $13);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9, $11, $13);} |
|
||||
VOID_FUNCTION_STRING_UINT
|
||||
'(' tSTRING ',' INTEGER ')'
|
||||
{if (! skip) (*$1)($3, $5);} |
|
||||
{if (!skip) (*$1)($3, $5);} |
|
||||
VOID_FUNCTION_STRING_UINT_STRING
|
||||
'(' tSTRING ',' INTEGER ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7);} |
|
||||
{if (!skip) (*$1)($3, $5, $7);} |
|
||||
VOID_FUNCTION_STRING_UINT_2STRING
|
||||
'(' tSTRING ',' INTEGER ',' tSTRING ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9);} |
|
||||
VOID_FUNCTION_STRING_WPARAM_LPARAM
|
||||
'(' tSTRING ',' INTEGER ',' INTEGER ')'
|
||||
{if (! skip) (*$1)($3, $5, $7);} |
|
||||
{if (!skip) (*$1)($3, $5, $7);} |
|
||||
VOID_FUNCTION_UINT
|
||||
'(' INTEGER ')'
|
||||
{if (! skip) (*$1)($3);} |
|
||||
{if (!skip) (*$1)($3);} |
|
||||
VOID_FUNCTION_2UINT
|
||||
'(' INTEGER ',' INTEGER ')'
|
||||
{if (! skip) (*$1)($3, $5);} |
|
||||
{if (!skip) (*$1)($3, $5);} |
|
||||
VOID_FUNCTION_2UINT_STRING
|
||||
'(' INTEGER ',' INTEGER ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7);} |
|
||||
{if (!skip) (*$1)($3, $5, $7);} |
|
||||
VOID_FUNCTION_3UINT
|
||||
'(' INTEGER ',' INTEGER ',' INTEGER ')'
|
||||
{if (! skip) (*$1)($3, $5, $7);} |
|
||||
{if (!skip) (*$1)($3, $5, $7);} |
|
||||
VOID_FUNCTION_2INT_3UINT_STRING
|
||||
'(' INTEGER ',' INTEGER ',' INTEGER ',' INTEGER ',' INTEGER ',' tSTRING ')'
|
||||
{if (! skip) (*$1)($3, $5, $7, $9, $11, $13);} |
|
||||
{if (!skip) (*$1)($3, $5, $7, $9, $11, $13);} |
|
||||
VOID_FUNCTION_FILE_WIN
|
||||
'(' file_win ')'
|
||||
{if (! skip) (*$1)(filename, windowname);} |
|
||||
{if (!skip) (*$1)(filename, windowname);} |
|
||||
VOID_FUNCTION_FILE_WIN_STRING
|
||||
'(' file_win ',' tSTRING ')'
|
||||
{if (! skip) (*$1)(filename, windowname, $5);} |
|
||||
{if (!skip) (*$1)(filename, windowname, $5);} |
|
||||
VOID_FUNCTION_FILE_WIN_UINT
|
||||
'(' file_win ',' INTEGER ')'
|
||||
{if (! skip) (*$1)(filename, windowname, $5);} ;
|
||||
{if (!skip) (*$1)(filename, windowname, $5);} ;
|
||||
|
||||
file_win: tSTRING
|
||||
{
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,9 +1,10 @@
|
|||
/*
|
||||
* Help Viewer
|
||||
*
|
||||
* Copyright 1996 Ulrich Schmid
|
||||
* Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
|
||||
|
||||
* Copyright 1996 Ulrich Schmid
|
||||
* Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
|
||||
* 2002 Eric Pouech
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
|
@ -19,16 +20,16 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#define MAX_LANGUAGE_NUMBER 255
|
||||
#define MAX_PATHNAME_LEN 1024
|
||||
#define MAX_STRING_LEN 255
|
||||
#define MAX_LANGUAGE_NUMBER 255
|
||||
#define MAX_PATHNAME_LEN 1024
|
||||
#define MAX_STRING_LEN 255
|
||||
|
||||
#define INTERNAL_BORDER_WIDTH 5
|
||||
#define POPUP_YDISTANCE 20
|
||||
#define SHADOW_DX 20
|
||||
#define SHADOW_DY 20
|
||||
#define BUTTON_CX 6
|
||||
#define BUTTON_CY 6
|
||||
#define INTERNAL_BORDER_WIDTH 5
|
||||
#define POPUP_YDISTANCE 20
|
||||
#define SHADOW_DX 10
|
||||
#define SHADOW_DY 10
|
||||
#define BUTTON_CX 6
|
||||
#define BUTTON_CY 6
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
|
||||
|
@ -38,82 +39,92 @@
|
|||
|
||||
typedef struct tagHelpLinePart
|
||||
{
|
||||
RECT rect;
|
||||
LPCSTR lpsText;
|
||||
UINT wTextLen;
|
||||
HFONT hFont;
|
||||
COLORREF color;
|
||||
RECT rect;
|
||||
enum {hlp_line_part_text, hlp_line_part_image} cookie;
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
LPCSTR lpsText;
|
||||
HFONT hFont;
|
||||
COLORREF color;
|
||||
WORD wTextLen;
|
||||
WORD wUnderline; /* 0 None, 1 simple, 2 double, 3 dotted */
|
||||
} text;
|
||||
struct
|
||||
{
|
||||
HBITMAP hBitmap;
|
||||
} image;
|
||||
} u;
|
||||
|
||||
struct
|
||||
{
|
||||
LPCSTR lpszPath;
|
||||
LONG lHash;
|
||||
BOOL bPopup;
|
||||
} link;
|
||||
struct
|
||||
{
|
||||
LPCSTR lpszPath;
|
||||
LONG lHash;
|
||||
BOOL bPopup;
|
||||
} link;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
struct tagHelpLinePart *next;
|
||||
struct tagHelpLinePart *next;
|
||||
} WINHELP_LINE_PART;
|
||||
|
||||
typedef struct tagHelpLine
|
||||
{
|
||||
RECT rect;
|
||||
WINHELP_LINE_PART first_part;
|
||||
struct tagHelpLine *next;
|
||||
RECT rect;
|
||||
WINHELP_LINE_PART first_part;
|
||||
struct tagHelpLine* next;
|
||||
} WINHELP_LINE;
|
||||
|
||||
typedef struct tagHelpButton
|
||||
{
|
||||
HWND hWnd;
|
||||
HWND hWnd;
|
||||
|
||||
LPCSTR lpszID;
|
||||
LPCSTR lpszName;
|
||||
LPCSTR lpszMacro;
|
||||
LPCSTR lpszID;
|
||||
LPCSTR lpszName;
|
||||
LPCSTR lpszMacro;
|
||||
|
||||
WPARAM wParam;
|
||||
WPARAM wParam;
|
||||
|
||||
RECT rect;
|
||||
RECT rect;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
struct tagHelpButton *next;
|
||||
struct tagHelpButton*next;
|
||||
} WINHELP_BUTTON;
|
||||
|
||||
typedef struct tagWinHelp
|
||||
{
|
||||
LPCSTR lpszName;
|
||||
LPCSTR lpszName;
|
||||
|
||||
WINHELP_BUTTON *first_button;
|
||||
HLPFILE_PAGE *page;
|
||||
WINHELP_LINE *first_line;
|
||||
WINHELP_BUTTON* first_button;
|
||||
HLPFILE_PAGE* page;
|
||||
WINHELP_LINE* first_line;
|
||||
|
||||
HWND hMainWnd;
|
||||
HWND hButtonBoxWnd;
|
||||
HWND hTextWnd;
|
||||
HWND hShadowWnd;
|
||||
HWND hMainWnd;
|
||||
HWND hButtonBoxWnd;
|
||||
HWND hTextWnd;
|
||||
HWND hShadowWnd;
|
||||
|
||||
HFONT (*fonts)[2];
|
||||
UINT fonts_len;
|
||||
HFONT* fonts;
|
||||
UINT fonts_len;
|
||||
|
||||
HCURSOR hArrowCur;
|
||||
HCURSOR hHandCur;
|
||||
HCURSOR hArrowCur;
|
||||
HCURSOR hHandCur;
|
||||
|
||||
HGLOBAL hSelf;
|
||||
struct tagWinHelp *next;
|
||||
struct tagWinHelp* next;
|
||||
} WINHELP_WINDOW;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
UINT wVersion;
|
||||
HANDLE hInstance;
|
||||
HWND hPopupWnd;
|
||||
UINT wStringTableOffset;
|
||||
WINHELP_WINDOW *active_win;
|
||||
WINHELP_WINDOW *win_list;
|
||||
UINT wVersion;
|
||||
HANDLE hInstance;
|
||||
HWND hPopupWnd;
|
||||
UINT wStringTableOffset;
|
||||
WINHELP_WINDOW* active_win;
|
||||
WINHELP_WINDOW* win_list;
|
||||
} WINHELP_GLOBALS;
|
||||
|
||||
extern WINHELP_GLOBALS Globals;
|
||||
|
||||
VOID WINHELP_CreateHelpWindow(LPCSTR, LONG, LPCSTR, BOOL, HWND, LPPOINT, INT);
|
||||
BOOL WINHELP_CreateHelpWindowByHash(LPCSTR, LONG, LPCSTR, BOOL, HWND, LPPOINT, INT);
|
||||
BOOL WINHELP_CreateHelpWindowByPage(HLPFILE_PAGE*, LPCSTR, BOOL, HWND, LPPOINT, INT);
|
||||
INT WINHELP_MessageBoxIDS(UINT, UINT, WORD);
|
||||
INT WINHELP_MessageBoxIDS_s(UINT, LPCSTR, UINT, WORD);
|
||||
|
||||
|
@ -128,7 +139,3 @@ extern CHAR STRING_DIALOG_TEST[];
|
|||
|
||||
/* Buttons */
|
||||
#define WH_FIRST_BUTTON 500
|
||||
|
||||
/* Local Variables: */
|
||||
/* c-file-style: "GNU" */
|
||||
/* End: */
|
||||
|
|
Loading…
Reference in New Issue