// Unicode support by Jim Park -- 08/23/2007 // Jim Park: Should probably turn this into a nice class for C++ programs.
#pragma once #include <windows.h> #include <tchar.h> // only include this file from one place in your DLL. // (it is all static, if you use it in two places it will fail)
/* Jim Park: This char is compared as an int value and therefore it's fine as an ASCII. Do not need to change to wchar_t since
it will get the same integer value. */ #define NOTIFY_BYE_BYE _T('x')
typedefstruct _stack_t { struct _stack_t *next;
TCHAR text[1]; // this should be the length of string_size
} stack_t;
typedefstruct { int autoclose; int all_user_var; int exec_error; int abort; int exec_reboot; int reboot_called; int XXX_cur_insttype; // deprecated int XXX_insttype_changed; // deprecated int silent; int instdir_error; int rtl; int errlvl; int alter_reg_view;
} exec_flags_type;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.