añadidas las fuentes de sistema
This commit is contained in:
parent
0db3b3d55f
commit
9f5ebedbfc
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="dinmem"
|
||||
ProjectGUID="{2FD59E33-AB54-47EC-A3E5-3619A3921ABF}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -55,8 +55,14 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -105,10 +111,18 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="file"
|
||||
ProjectGUID="{EA869297-5AC6-4603-BB86-9962207DB25F}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -54,8 +54,14 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -104,10 +110,18 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include "export.h"
|
||||
#include "graphics.h"
|
||||
#include "SDL_rotozoom.h"
|
||||
#include "default_palette.h"
|
||||
|
||||
|
||||
/*! \brief Función de exportación de símbolos de la DLL
|
||||
|
@ -180,25 +181,16 @@ FILE * memo ;
|
|||
void guarda_pantallazo(char* nombre_program)
|
||||
{
|
||||
char capturef[256];
|
||||
int c,i;
|
||||
int c=0;
|
||||
FILE* f;
|
||||
|
||||
strcpy(capturef,nombre_program);
|
||||
i=strlen(capturef)+3;
|
||||
strcat(capturef,"0000");
|
||||
strcat(capturef,".bmp");
|
||||
sprintf(capturef,"%s%04d.bmp",nombre_program,c);
|
||||
while(f=fopen(capturef,"rb")) {
|
||||
fclose(f);
|
||||
c=i;
|
||||
while(1) {
|
||||
capturef[c]++;
|
||||
if(capturef[c]>'9') {
|
||||
capturef[c]='0';
|
||||
c--;
|
||||
if(c<i-3) break;
|
||||
}
|
||||
else break;
|
||||
}
|
||||
c++;
|
||||
sprintf(capturef,"%s%04d.bmp",nombre_program,c);
|
||||
if(c==0)
|
||||
break;
|
||||
}
|
||||
SDL_SaveBMP(screen,capturef);
|
||||
}
|
||||
|
@ -263,7 +255,8 @@ void frame(FUNCTION_PARAMS)
|
|||
|
||||
temp = SDL_SetVideoMode(fp->graphics->ancho,fp->graphics->alto,fp->graphics->bpp,SDL_HWSURFACE|SDL_DOUBLEBUF|SDL_HWACCEL|((fp->graphics->flags&GR_FULLSCREEN)?SDL_FULLSCREEN:0)|((fp->graphics->bpp==8)?SDL_HWPALETTE:0));
|
||||
if(fp->graphics->bpp==8)
|
||||
PaletteCopy(temp,screen);
|
||||
//PaletteCopy(temp,screen);
|
||||
SDL_SetPalette(screen,SDL_LOGPAL|SDL_PHYSPAL,(SDL_Color*)default_palette,0,256);
|
||||
|
||||
if(fp->graphics->resflags&GR_CHANGED) {
|
||||
SDL_FreeSurface(screen);
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
#include "export.h"
|
||||
#include "graphics.h"
|
||||
#include "default_palette.h"
|
||||
|
||||
/*! \brief Cambia el modo de la pantalla
|
||||
* \todo ¿más flags?
|
||||
|
@ -60,9 +59,6 @@ int eDIV_SET_MODE(FUNCTION_PARAMS)
|
|||
screen=SDL_SetVideoMode(fp->graphics->ancho,fp->graphics->alto,fp->graphics->bpp,SDL_HWSURFACE|SDL_DOUBLEBUF|SDL_HWACCEL|((fp->graphics->flags&GR_FULLSCREEN)?SDL_FULLSCREEN:0)|((fp->graphics->bpp==8)?SDL_HWPALETTE:0));
|
||||
fp->graphics->buffer=screen->pixels;
|
||||
|
||||
if(fp->graphics->bpp==8)
|
||||
SDL_SetPalette(screen,SDL_LOGPAL|SDL_PHYSPAL,(SDL_Color*)default_palette,0,256);
|
||||
|
||||
if ( screen == NULL ) {
|
||||
fp->Critical_Error(7); /* No se pudo inicializar SDL */
|
||||
return 0;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="graphics"
|
||||
ProjectGUID="{20CF9907-2F82-4A8C-A5FB-074F5F1BCB32}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -61,8 +61,14 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -112,17 +118,22 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm">
|
||||
<File
|
||||
RelativePath="..\SDL_rotozoom.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\advance.c">
|
||||
</File>
|
||||
|
@ -150,19 +161,22 @@
|
|||
<File
|
||||
RelativePath="..\regiones.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\SDL_rotozoom.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="cabeceras"
|
||||
Filter="h;hpp;hxx;hm;inl;inc">
|
||||
<File
|
||||
RelativePath="..\SDL_rotozoom.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\default_palette.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\graphics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\SDL_rotozoom.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="definiciones"
|
||||
|
|
|
@ -250,7 +250,7 @@ struct _palette {
|
|||
};
|
||||
|
||||
/*! Estructura graphics, permite acceder a la pantalla */
|
||||
typedef struct {
|
||||
struct _graphics {
|
||||
int ancho;
|
||||
int alto;
|
||||
int bpp;
|
||||
|
@ -260,7 +260,7 @@ typedef struct {
|
|||
byte* background;
|
||||
struct _palette* palette;
|
||||
struct _palette* activepal;
|
||||
} _graphics;
|
||||
};
|
||||
|
||||
/*! Parámetros para las funciones exportadas */
|
||||
struct _fun_params{
|
||||
|
@ -287,7 +287,7 @@ struct _fun_params{
|
|||
int imem_max;
|
||||
int* nullstring;
|
||||
int* nstring;
|
||||
_graphics* graphics;
|
||||
struct _graphics* graphics;
|
||||
};
|
||||
|
||||
/* Flags para graphics */
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="input"
|
||||
ProjectGUID="{92E50294-4312-49E4-848B-5C9FF43AB27D}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -55,8 +55,14 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -106,10 +112,18 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="math"
|
||||
ProjectGUID="{56A4746D-5A73-4CA5-BD0C-959F14B503E7}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -54,8 +54,14 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -104,10 +110,18 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="strings"
|
||||
ProjectGUID="{8983E45F-30DD-486C-AF5D-723E86BF5149}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -54,8 +54,14 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -102,10 +108,18 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
|
|
BIN
dlls/src/text/SYS06X08.PCX
Normal file
BIN
dlls/src/text/SYS06X08.PCX
Normal file
Binary file not shown.
|
@ -1,7 +1,8 @@
|
|||
/*
|
||||
* eDiv Compiler
|
||||
* Copyleft (C) 2000-2002 Sion Entertainment
|
||||
* http://www.sion-e.com
|
||||
* Copyleft (C) 2000-2003 Sion Ltd.
|
||||
* Copyleft (C) 2005 eDIV Team
|
||||
* http://ediv.divsite.net
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
BIN
dlls/src/text/sys06x08_latin1.bmp
Normal file
BIN
dlls/src/text/sys06x08_latin1.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
81
dlls/src/text/sys06x08_latin1.h
Normal file
81
dlls/src/text/sys06x08_latin1.h
Normal file
|
@ -0,0 +1,81 @@
|
|||
/**
|
||||
* @file sys06x08_latin1.h
|
||||
* Definición de la fuente sys06x08_latin1 (generado por builtinfont)
|
||||
*/
|
||||
|
||||
#ifndef __EDIV__sys06x08_latin1_h__
|
||||
#define __EDIV__sys06x08_latin1_h__
|
||||
|
||||
static unsigned char sys06x08_latin1[256*8] = {
|
||||
0,0,0,0,0,0,0,0,14,17,27,17,31,17,14,0,14,31,21,31,17,31,14,0,10,31,31,31,14,14,
|
||||
4,0,4,14,31,31,31,14,4,0,14,14,31,31,31,4,14,0,4,14,31,31,4,4,31,0,0,0,14,14,
|
||||
14,0,0,0,31,31,17,17,17,31,31,0,31,17,17,17,17,17,31,0,31,31,17,21,17,31,31,0,28,16,
|
||||
20,2,7,5,7,0,14,10,14,4,4,14,4,0,30,18,30,2,2,3,3,0,31,17,31,18,18,27,27,0,
|
||||
4,21,14,27,14,21,4,0,3,7,15,31,15,7,3,0,24,28,30,31,30,28,24,0,4,14,31,4,31,14,
|
||||
4,0,10,10,10,10,10,0,10,0,30,21,22,20,20,20,20,0,24,4,14,10,14,4,3,0,0,0,0,0,
|
||||
31,17,31,0,4,14,31,4,31,14,31,0,4,14,31,4,4,4,4,0,4,4,4,4,31,14,4,0,0,4,
|
||||
12,31,12,4,0,0,0,4,6,31,6,4,0,0,0,0,1,1,31,0,0,0,0,10,27,31,27,10,0,0,
|
||||
0,4,4,14,14,31,31,0,31,31,14,14,4,4,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,0,
|
||||
4,0,10,10,10,0,0,0,0,0,10,10,31,10,31,10,10,0,4,30,5,14,20,15,4,0,3,19,8,4,
|
||||
2,25,24,0,2,5,5,18,21,9,22,0,6,4,2,0,0,0,0,0,8,4,2,2,2,4,8,0,2,4,
|
||||
8,8,8,4,2,0,0,4,21,14,21,4,0,0,0,4,4,31,4,4,0,0,0,0,0,0,6,4,2,0,
|
||||
0,0,0,31,0,0,0,0,0,0,0,0,0,6,6,0,0,16,8,4,2,1,0,0,14,17,25,21,19,17,
|
||||
14,0,4,6,4,4,4,4,14,0,14,17,16,8,4,2,31,0,31,8,4,8,16,17,14,0,8,12,10,9,
|
||||
31,8,8,0,31,1,15,16,16,17,14,0,12,2,1,15,17,17,14,0,31,16,8,4,2,2,2,0,14,17,
|
||||
17,14,17,17,14,0,14,17,17,30,16,8,6,0,0,6,6,0,6,6,0,0,0,6,6,0,6,4,2,0,
|
||||
8,4,2,1,2,4,8,0,0,0,31,0,31,0,0,0,2,4,8,16,8,4,2,0,14,17,16,8,4,0,
|
||||
4,0,14,17,16,22,21,21,14,0,14,17,17,31,17,17,17,0,15,17,17,15,17,17,15,0,14,17,1,1,
|
||||
1,17,14,0,7,9,17,17,17,9,7,0,31,1,1,15,1,1,31,0,31,1,1,15,1,1,1,0,14,17,
|
||||
1,29,17,17,30,0,17,17,17,31,17,17,17,0,14,4,4,4,4,4,14,0,28,8,8,8,8,9,6,0,
|
||||
17,9,5,3,5,9,17,0,1,1,1,1,1,1,31,0,17,27,21,17,17,17,17,0,17,19,21,25,17,17,
|
||||
17,0,14,17,17,17,17,17,14,0,15,17,17,15,1,1,1,0,14,17,17,17,21,9,22,0,15,17,17,15,
|
||||
5,9,17,0,14,17,1,14,16,17,14,0,31,4,4,4,4,4,4,0,17,17,17,17,17,17,14,0,17,17,
|
||||
17,17,17,10,4,0,17,17,17,17,21,21,10,0,17,17,10,4,10,17,17,0,17,17,17,10,4,4,4,0,
|
||||
31,16,8,4,2,1,31,0,14,2,2,2,2,2,14,0,0,1,2,4,8,16,0,0,14,8,8,8,8,8,
|
||||
14,0,4,10,17,0,0,0,0,0,0,0,0,0,0,0,31,0,4,4,4,0,0,0,0,0,0,0,14,16,
|
||||
30,17,30,0,1,1,13,19,17,17,15,0,0,0,14,1,1,17,14,0,16,16,22,25,17,17,30,0,0,0,
|
||||
14,17,31,1,14,0,24,4,14,4,4,4,4,0,0,0,30,17,17,30,16,14,1,1,13,19,17,17,17,0,
|
||||
4,0,6,4,4,4,14,0,8,0,12,8,8,9,6,0,2,2,18,10,6,10,18,0,6,4,4,4,4,4,
|
||||
14,0,0,0,11,21,21,17,17,0,0,0,13,19,17,17,17,0,0,0,14,17,17,17,14,0,0,0,15,17,
|
||||
17,15,1,1,0,0,30,17,17,30,16,16,0,0,13,19,1,1,1,0,0,0,30,1,14,16,15,0,0,2,
|
||||
7,2,2,18,12,0,0,0,17,17,17,25,22,0,0,0,17,17,17,10,4,0,0,0,17,17,21,21,10,0,
|
||||
0,0,19,12,4,6,25,0,0,0,17,17,17,30,16,14,0,0,31,8,4,2,31,0,24,4,4,3,4,4,
|
||||
24,0,4,4,4,4,4,4,4,0,3,4,4,24,4,4,3,0,0,0,0,22,13,0,0,0,31,17,17,17,
|
||||
17,17,31,0,12,18,2,15,2,18,12,0,31,17,17,17,17,17,31,0,0,0,0,0,6,4,2,0,8,20,
|
||||
4,14,4,5,2,0,0,0,0,0,27,18,9,0,0,0,0,0,0,21,21,0,4,4,31,4,4,4,4,0,
|
||||
4,31,4,4,4,31,4,0,4,10,0,0,0,0,0,0,3,19,8,4,58,57,0,0,10,4,30,1,14,16,
|
||||
15,0,0,8,4,2,4,8,0,0,30,5,5,29,5,5,30,0,31,17,17,17,17,17,31,0,10,4,31,8,
|
||||
4,2,31,0,31,17,17,17,17,17,31,0,31,17,17,17,17,17,31,0,4,2,6,0,0,0,0,0,6,4,
|
||||
2,0,0,0,0,0,18,9,27,0,0,0,0,0,27,18,9,0,0,0,0,0,0,0,6,15,15,6,0,0,
|
||||
0,0,0,14,0,0,0,0,0,0,0,31,0,0,0,0,22,13,0,0,0,0,0,0,31,26,26,0,0,0,
|
||||
0,0,10,4,30,1,14,16,15,0,0,2,4,8,4,2,0,0,0,0,14,21,29,5,30,0,31,17,17,17,
|
||||
17,17,31,0,10,4,31,8,4,2,31,0,17,0,17,17,10,4,4,0,0,0,0,0,0,0,0,0,4,0,
|
||||
4,4,4,4,4,0,4,4,30,1,30,4,4,0,12,18,2,15,2,2,31,0,0,17,14,10,14,17,0,0,
|
||||
17,10,31,4,31,4,4,0,4,4,4,0,4,4,4,0,24,4,14,10,14,4,3,0,17,0,0,0,0,0,
|
||||
0,0,12,18,45,37,45,18,12,0,12,10,28,0,31,0,0,0,0,20,10,5,10,20,0,0,0,0,0,31,
|
||||
16,16,0,0,0,0,0,14,0,0,0,0,12,18,45,37,37,18,12,0,31,0,0,0,0,0,0,0,12,18,
|
||||
18,12,0,0,0,0,4,14,4,0,14,0,0,0,12,8,4,12,0,0,0,0,12,8,8,12,0,0,0,0,
|
||||
8,4,0,0,0,0,0,0,0,0,17,17,19,13,1,1,30,21,22,20,20,20,20,0,0,0,0,4,0,0,
|
||||
0,0,0,0,0,0,0,0,8,6,4,6,4,4,0,0,0,0,14,10,14,0,31,0,0,0,0,5,10,20,
|
||||
10,5,0,0,17,9,5,18,21,28,16,0,17,9,5,26,17,8,24,0,3,18,11,36,42,57,32,0,4,0,
|
||||
4,2,1,17,14,0,2,4,14,17,31,17,17,0,8,4,14,17,31,17,17,0,14,17,14,17,31,17,17,0,
|
||||
14,0,14,17,31,17,17,0,17,14,17,31,17,17,17,0,14,10,14,17,31,17,17,0,28,6,5,31,5,5,
|
||||
29,0,0,14,1,17,14,8,6,0,6,31,1,15,1,1,31,0,12,31,1,15,1,1,31,0,4,10,31,1,
|
||||
15,1,31,0,17,0,31,1,15,1,31,0,6,14,4,4,4,4,14,0,12,14,4,4,4,4,14,0,14,17,
|
||||
14,4,4,4,14,0,10,0,14,4,4,4,14,0,14,18,18,23,18,18,14,0,31,0,19,21,25,17,17,0,
|
||||
6,14,17,17,17,17,14,0,12,14,17,17,17,17,14,0,14,17,14,17,17,17,14,0,14,0,14,17,17,17,
|
||||
14,0,17,0,14,17,17,17,14,0,0,0,10,4,10,0,0,0,16,14,25,21,19,14,1,0,2,4,17,17,
|
||||
17,17,14,0,8,4,17,17,17,17,14,0,4,10,0,17,17,17,14,0,17,0,17,17,17,17,14,0,8,4,
|
||||
17,17,10,4,4,0,0,2,14,18,18,14,2,0,6,9,5,9,17,17,13,0,2,4,14,16,30,17,30,0,
|
||||
8,4,14,16,30,17,30,0,14,17,14,16,30,17,30,0,14,0,14,16,30,17,30,0,17,0,14,16,30,17,
|
||||
30,0,14,10,14,16,30,17,30,0,0,0,15,20,30,5,30,0,0,0,30,1,30,8,6,0,2,4,14,17,
|
||||
31,1,14,0,8,4,14,17,31,1,14,0,14,17,14,17,31,1,14,0,17,0,14,17,31,1,14,0,2,4,
|
||||
6,4,4,4,14,0,8,4,6,4,4,4,14,0,14,17,6,4,4,4,14,0,17,0,6,4,4,4,14,0,
|
||||
10,6,8,14,17,17,14,0,31,0,13,19,17,17,17,0,2,4,14,17,17,17,14,0,8,4,14,17,17,17,
|
||||
14,0,14,17,14,17,17,17,14,0,14,0,14,17,17,17,14,0,17,0,14,17,17,17,14,0,6,6,0,15,
|
||||
0,6,6,0,16,8,14,21,21,14,3,0,2,4,17,17,17,25,22,0,8,4,17,17,17,25,22,0,14,17,
|
||||
0,17,17,25,22,0,17,0,17,17,17,25,22,0,8,4,17,18,12,4,3,0,0,2,2,14,18,14,2,2,
|
||||
17,0,17,18,12,4,3,0
|
||||
};
|
||||
|
||||
#endif /*__EDIV__sys06x08_latin1_h__*/
|
BIN
dlls/src/text/sys06x08_msdos.bmp
Normal file
BIN
dlls/src/text/sys06x08_msdos.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
81
dlls/src/text/sys06x08_msdos.h
Normal file
81
dlls/src/text/sys06x08_msdos.h
Normal file
|
@ -0,0 +1,81 @@
|
|||
/**
|
||||
* @file sys06x08_msdos.h
|
||||
* Definición de la fuente sys06x08_msdos (generado por builtinfont)
|
||||
*/
|
||||
|
||||
#ifndef __EDIV__sys06x08_msdos_h__
|
||||
#define __EDIV__sys06x08_msdos_h__
|
||||
|
||||
static unsigned char sys06x08_msdos[256*8] = {
|
||||
0,0,0,0,0,0,0,0,14,17,27,17,31,17,14,0,14,31,21,31,17,31,14,0,10,31,31,31,14,14,
|
||||
4,0,4,14,31,31,31,14,4,0,14,14,31,31,31,4,14,0,4,14,31,31,4,4,31,0,0,0,14,14,
|
||||
14,0,0,0,31,31,17,17,17,31,31,0,31,17,17,17,17,17,31,0,31,31,17,21,17,31,31,0,28,16,
|
||||
20,2,7,5,7,0,14,10,14,4,4,14,4,0,30,18,30,2,2,3,3,0,31,17,31,18,18,27,27,0,
|
||||
4,21,14,27,14,21,4,0,3,7,15,31,15,7,3,0,24,28,30,31,30,28,24,0,4,14,31,4,31,14,
|
||||
4,0,10,10,10,10,10,0,10,0,30,21,22,20,20,20,20,0,24,4,14,10,14,4,3,0,0,0,0,0,
|
||||
31,17,31,0,4,14,31,4,31,14,31,0,4,14,31,4,4,4,4,0,4,4,4,4,31,14,4,0,0,4,
|
||||
12,31,12,4,0,0,0,4,6,31,6,4,0,0,0,0,1,1,31,0,0,0,0,10,27,31,27,10,0,0,
|
||||
0,4,4,14,14,31,31,0,31,31,14,14,4,4,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,0,
|
||||
4,0,10,10,10,0,0,0,0,0,10,10,31,10,31,10,10,0,4,30,5,14,20,15,4,0,3,19,8,4,
|
||||
2,25,24,0,2,5,5,18,21,9,22,0,6,4,2,0,0,0,0,0,8,4,2,2,2,4,8,0,2,4,
|
||||
8,8,8,4,2,0,0,4,21,14,21,4,0,0,0,4,4,31,4,4,0,0,0,0,0,0,6,4,2,0,
|
||||
0,0,0,31,0,0,0,0,0,0,0,0,0,6,6,0,0,16,8,4,2,1,0,0,14,17,25,21,19,17,
|
||||
14,0,4,6,4,4,4,4,14,0,14,17,16,8,4,2,31,0,31,8,4,8,16,17,14,0,8,12,10,9,
|
||||
31,8,8,0,31,1,15,16,16,17,14,0,12,2,1,15,17,17,14,0,31,16,8,4,2,2,2,0,14,17,
|
||||
17,14,17,17,14,0,14,17,17,30,16,8,6,0,0,6,6,0,6,6,0,0,0,6,6,0,6,4,2,0,
|
||||
8,4,2,1,2,4,8,0,0,0,31,0,31,0,0,0,2,4,8,16,8,4,2,0,14,17,16,8,4,0,
|
||||
4,0,14,17,16,22,21,21,14,0,14,17,17,31,17,17,17,0,15,17,17,15,17,17,15,0,14,17,1,1,
|
||||
1,17,14,0,7,9,17,17,17,9,7,0,31,1,1,15,1,1,31,0,31,1,1,15,1,1,1,0,14,17,
|
||||
1,29,17,17,30,0,17,17,17,31,17,17,17,0,14,4,4,4,4,4,14,0,28,8,8,8,8,9,6,0,
|
||||
17,9,5,3,5,9,17,0,1,1,1,1,1,1,31,0,17,27,21,17,17,17,17,0,17,19,21,25,17,17,
|
||||
17,0,14,17,17,17,17,17,14,0,15,17,17,15,1,1,1,0,14,17,17,17,21,9,22,0,15,17,17,15,
|
||||
5,9,17,0,14,17,1,14,16,17,14,0,31,4,4,4,4,4,4,0,17,17,17,17,17,17,14,0,17,17,
|
||||
17,17,17,10,4,0,17,17,17,17,21,21,10,0,17,17,10,4,10,17,17,0,17,17,17,10,4,4,4,0,
|
||||
31,16,8,4,2,1,31,0,14,2,2,2,2,2,14,0,0,1,2,4,8,16,0,0,14,8,8,8,8,8,
|
||||
14,0,4,10,17,0,0,0,0,0,0,0,0,0,0,0,31,0,4,4,4,0,0,0,0,0,0,0,14,16,
|
||||
30,17,30,0,1,1,13,19,17,17,15,0,0,0,14,1,1,17,14,0,16,16,22,25,17,17,30,0,0,0,
|
||||
14,17,31,1,14,0,24,4,14,4,4,4,4,0,0,0,30,17,17,30,16,14,1,1,13,19,17,17,17,0,
|
||||
4,0,6,4,4,4,14,0,8,0,12,8,8,9,6,0,2,2,18,10,6,10,18,0,6,4,4,4,4,4,
|
||||
14,0,0,0,11,21,21,17,17,0,0,0,13,19,17,17,17,0,0,0,14,17,17,17,14,0,0,0,15,17,
|
||||
17,15,1,1,0,0,30,17,17,30,16,16,0,0,13,19,1,1,1,0,0,0,30,1,14,16,15,0,0,2,
|
||||
7,2,2,18,12,0,0,0,17,17,17,25,22,0,0,0,17,17,17,10,4,0,0,0,17,17,21,21,10,0,
|
||||
0,0,19,12,4,6,25,0,0,0,17,17,17,30,16,14,0,0,31,8,4,2,31,0,24,4,4,3,4,4,
|
||||
24,0,4,4,4,0,4,4,4,0,3,4,4,24,4,4,3,0,22,13,0,0,0,0,0,0,0,4,10,17,
|
||||
17,17,31,0,0,0,30,1,30,8,6,0,17,0,17,17,17,25,22,0,8,4,14,17,31,1,14,0,14,17,
|
||||
14,16,30,17,30,0,17,0,14,16,30,17,30,0,2,4,14,16,30,17,30,0,4,4,14,16,30,17,30,0,
|
||||
0,14,1,17,14,8,6,0,14,17,14,17,31,1,14,0,17,0,14,17,31,1,14,0,2,4,14,17,31,1,
|
||||
14,0,17,0,6,4,4,4,14,0,14,17,6,4,4,4,14,0,2,4,6,4,4,4,14,0,17,14,17,31,
|
||||
17,17,17,0,4,14,17,31,17,17,17,0,12,31,1,15,1,1,31,0,31,4,4,14,5,5,30,0,28,6,
|
||||
5,31,5,5,29,0,14,17,14,17,17,17,14,0,17,0,14,17,17,17,14,0,2,4,14,17,17,17,14,0,
|
||||
14,17,0,17,17,25,22,0,2,4,17,17,17,25,22,0,17,0,17,18,12,4,3,0,17,4,10,17,17,10,
|
||||
4,0,17,0,17,17,17,17,14,0,4,4,30,1,30,4,4,0,12,18,2,15,2,2,31,0,17,10,31,4,
|
||||
31,4,4,0,3,5,5,11,29,9,25,0,8,20,4,14,4,5,2,0,8,4,14,16,30,17,30,0,8,4,
|
||||
6,4,4,4,14,0,8,4,14,17,17,17,14,0,8,4,17,17,17,25,22,0,31,0,13,19,17,17,17,0,
|
||||
31,0,19,21,25,17,17,0,12,10,28,0,31,0,0,0,14,10,14,0,31,0,0,0,4,0,4,2,1,17,
|
||||
14,0,0,0,0,31,1,1,0,0,0,0,0,31,16,16,0,0,17,9,5,26,17,8,24,0,17,9,5,18,
|
||||
21,28,16,0,4,0,4,4,4,4,4,0,0,20,10,5,10,20,0,0,0,5,10,20,10,5,0,0,21,0,
|
||||
42,0,21,0,42,0,21,42,21,42,21,42,21,42,63,21,63,42,63,21,63,42,4,4,4,4,4,4,4,4,
|
||||
4,4,4,7,4,4,4,4,4,4,7,4,7,4,4,4,10,10,10,11,10,10,10,10,0,0,0,15,10,10,
|
||||
10,10,0,0,7,4,7,4,4,4,10,10,11,8,11,10,10,10,10,10,10,10,10,10,10,10,0,0,15,8,
|
||||
11,10,10,10,10,10,11,8,15,0,0,0,10,10,10,15,0,0,0,0,4,4,7,4,7,0,0,0,0,0,
|
||||
0,7,4,4,4,4,4,4,4,60,0,0,0,0,4,4,4,63,0,0,0,0,0,0,0,63,4,4,4,4,
|
||||
4,4,4,60,4,4,4,4,0,0,0,63,0,0,0,0,4,4,4,63,4,4,4,4,4,4,60,4,60,4,
|
||||
4,4,10,10,10,58,10,10,10,10,10,10,58,2,62,0,0,0,0,0,62,2,58,10,10,10,10,10,59,0,
|
||||
63,0,0,0,0,0,63,0,59,10,10,10,10,10,58,2,58,10,10,10,0,0,63,0,63,0,0,0,10,10,
|
||||
59,0,59,10,10,10,4,4,63,0,63,0,0,0,10,10,10,63,0,0,0,0,0,0,63,0,63,4,4,4,
|
||||
0,0,0,63,10,10,10,10,10,10,10,62,0,0,0,0,4,4,60,4,60,0,0,0,0,0,60,4,60,4,
|
||||
4,4,0,0,0,62,10,10,10,10,10,10,10,63,10,10,10,10,4,4,63,4,63,4,4,4,4,4,4,7,
|
||||
0,0,0,0,0,0,0,60,4,4,4,4,63,63,63,63,63,63,63,63,0,0,0,0,63,63,63,63,7,7,
|
||||
7,7,7,7,7,7,56,56,56,56,56,56,56,56,63,63,63,63,0,0,0,0,0,0,22,9,9,9,22,0,
|
||||
6,9,5,9,17,17,13,0,31,17,17,1,1,1,1,0,0,0,0,31,10,10,10,0,31,17,2,4,2,17,
|
||||
31,0,0,0,0,30,9,9,6,0,17,17,17,19,13,1,1,0,0,6,29,4,4,4,4,0,14,4,10,17,
|
||||
10,4,14,0,0,14,17,31,17,17,14,0,0,14,17,17,17,10,27,0,12,2,4,14,17,17,14,0,0,0,
|
||||
14,21,21,14,0,0,16,8,14,21,21,14,3,0,4,4,28,4,4,8,16,0,14,17,17,17,17,17,17,0,
|
||||
0,31,0,31,0,31,0,0,4,14,4,0,14,0,0,0,2,4,8,4,2,0,31,0,8,4,2,4,8,0,
|
||||
31,0,8,20,20,4,4,4,4,4,4,4,4,4,5,5,2,0,6,6,0,15,0,6,6,0,0,22,9,0,
|
||||
22,9,0,0,12,18,18,12,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,4,0,0,0,0,24,8,
|
||||
8,9,10,12,8,0,6,10,10,0,0,0,0,0,12,8,4,12,0,0,0,0,0,14,14,14,14,14,0,0,
|
||||
0,0,0,0,0,0,0,0
|
||||
};
|
||||
|
||||
#endif /*__EDIV__sys06x08_msdos_h__*/
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
#include "edivfont.h"
|
||||
#include "text.h"
|
||||
#include "sys06x08_latin1.h"
|
||||
|
||||
#define sys06x08 sys06x08_latin1
|
||||
|
||||
#define MAX_FONTS 0xFF
|
||||
#define MAX_WRITES 0xFFF
|
||||
|
@ -49,6 +51,7 @@ int eDiv_LoadFnt(FUNCTION_PARAMS)
|
|||
int i ;
|
||||
fpos_t pos ;
|
||||
const char *filename=getstrparm(); /* Fichero a cargar */
|
||||
SDL_Surface* temp;
|
||||
|
||||
for ( i = 1 ; i <= MAX_FONTS ; i++ )
|
||||
{
|
||||
|
@ -77,6 +80,13 @@ int eDiv_LoadFnt(FUNCTION_PARAMS)
|
|||
fprintf(fichero , "Leidos %d bytes\n" , (int)fread( pool , 1 , fuente_control_s[i].size_imagen , fuente ) ) ;
|
||||
fuente_control_s[i].imagen = SDL_CreateRGBSurfaceFrom( pool , fuente_control_s[i].w , fuente_control_s[i].h , fuente_control_s[i].bytespp * 8 , fuente_control_s[i].w * fuente_control_s[i].bytespp , 0 , 0 , 0, 0 ) ;
|
||||
|
||||
/* Convierte la fuente al formato actual de la pantalla */
|
||||
temp=SDL_DisplayFormat(fuente_control_s[i].imagen);
|
||||
if(temp) {
|
||||
SDL_FreeSurface(fuente_control_s[i].imagen);
|
||||
fuente_control_s[i].imagen=temp;
|
||||
}
|
||||
|
||||
fclose(fuente) ;
|
||||
fclose(fichero) ;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Version="7.10"
|
||||
Name="text"
|
||||
ProjectGUID="{71D05C32-B49A-4690-AA4D-1385D4257CDF}"
|
||||
Keyword="Win32Proj">
|
||||
|
@ -47,15 +47,25 @@
|
|||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
Name="VCPreBuildEventTool"
|
||||
CommandLine="cd ..
|
||||
..\..\..\util\bin\builtinfont.exe sys06x08_msdos.bmp
|
||||
..\..\..\util\bin\builtinfont.exe sys06x08_latin1.bmp
|
||||
"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
|
@ -105,10 +115,18 @@
|
|||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="codigo"
|
||||
|
|
|
@ -1,26 +1,40 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 7.00
|
||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dinmem", "..\dinmem\win32\dinmem.vcproj", "{2FD59E33-AB54-47EC-A3E5-3619A3921ABF}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "edivstd", "..\edivstd\win32\edivstd.vcproj", "{92B930FB-7B7F-4DD6-A50C-8DE8E34461C2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "file", "..\file\win32\file.vcproj", "{EA869297-5AC6-4603-BB86-9962207DB25F}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "input", "..\input\win32\input.vcproj", "{92E50294-4312-49E4-848B-5C9FF43AB27D}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "math", "..\math\win32\math.vcproj", "{56A4746D-5A73-4CA5-BD0C-959F14B503E7}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "strings", "..\strings\win32\strings.vcproj", "{8983E45F-30DD-486C-AF5D-723E86BF5149}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text", "..\text\win32\text.vcproj", "{71D05C32-B49A-4690-AA4D-1385D4257CDF}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "graphics", "..\graphics\win32\graphics.vcproj", "{20CF9907-2F82-4A8C-A5FB-074F5F1BCB32}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
ConfigName.0 = Debug
|
||||
ConfigName.1 = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectDependencies) = postSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{2FD59E33-AB54-47EC-A3E5-3619A3921ABF}.Debug.ActiveCfg = Debug|Win32
|
||||
|
|
Loading…
Reference in a new issue