Subversion Repositories filter_foundry

Rev

Rev 496 | Rev 523 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 496 Rev 521
Line 16... Line 16...
16
    You should have received a copy of the GNU General Public License
16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
19
*/
20
 
20
 
21
// TODO: Deutsche Umlaute sind kaputt (UTF8 Zeichen werden gezeigt)
-
 
22
// Hiermit geht es aber...
-
 
23
// Meldung "Unbekanntes Pragma" (trotzdem bringt es was?!)
-
 
24
#pragma code_page(65001)
-
 
25
 
-
 
26
#define MSG_PREMIERE_COMPAT_ID 1
21
#define MSG_PREMIERE_COMPAT_ID 1
27
#define MSG_PREMIERE_COMPAT_ENUS "This version of Filter Foundry is not compatible with Adobe Premiere!";
22
#define MSG_PREMIERE_COMPAT_ENUS "This version of Filter Foundry is not compatible with Adobe Premiere!";
28
#define MSG_PREMIERE_COMPAT_DEDE "Diese Version von Filter Foundry ist mit Adobe Premiere nicht kompatibel!"
23
#define MSG_PREMIERE_COMPAT_DEDE "Diese Version von Filter Foundry ist mit Adobe Premiere nicht kompatibel!"
29
 
24
 
30
#define MSG_RUNDLL_ERR_ID 2
25
#define MSG_RUNDLL_ERR_ID 2
Line 251... Line 246...
251
#define MSG_ABOUT_CONTACT_AUTHOR_ENUS "Please contact the author with any bug reports,\nsuggestions or comments.\nIf you use this program and like it, please consider\nmaking a donation."
246
#define MSG_ABOUT_CONTACT_AUTHOR_ENUS "Please contact the author with any bug reports,\nsuggestions or comments.\nIf you use this program and like it, please consider\nmaking a donation."
252
#define MSG_ABOUT_CONTACT_AUTHOR_DEDE "Bitte kontaktieren Sie den Autor für Fehlerberichte,\nAnregungen und Kommentare.\nWenn Sie dieses Programm mögen,\nerwägen Sie bitte eine kleine Spende."
247
#define MSG_ABOUT_CONTACT_AUTHOR_DEDE "Bitte kontaktieren Sie den Autor für Fehlerberichte,\nAnregungen und Kommentare.\nWenn Sie dieses Programm mögen,\nerwägen Sie bitte eine kleine Spende."
253
 
248
 
254
 
249
 
255
void strcpy_advance_id(TCHAR** str, int msgid);
250
void strcpy_advance_id(TCHAR** str, int msgid);
256
void FF_GetMsg(TCHAR* ret, int MsgId);
251
int FF_GetMsg(TCHAR* ret, int MsgId);
257
TCHAR* FF_GetMsg_Cpy(int MsgId);
252
TCHAR* FF_GetMsg_Cpy(int MsgId);
258
void FF_GetMsg_Free(TCHAR* str);
253
void FF_GetMsg_Free(TCHAR* str);