|
|
| .............................................................................................................................
|
Monday January 31
I'm writting from Las choapas, in the morning i delivered the documentation, i think that the project has very chances to be accepted. Now, i going to visit to my aunt.
|
| .............................................................................................................................
|
Wednesday January 26
The slides about the conference: Free Software in the Government is now online, the conference was presented in API in december. Now i'm writting a project that i have that present the next monday in Las Choapas.
|
| .............................................................................................................................
|
Friday January 21
Today i going to continue programming the system of Elastogel, only i have to design the reports of system, by the afternoon i will play soccer with the friends in Oasis Camp, and the night i think to go a musical concert (Sin Bandera).
|
| .............................................................................................................................
|
Monday January 10
The code that i put before is for Borland Compiler. If you want to print with the gcc compiler, the body of program uses the dispositive: "/dev/lp0". For example:
char Linea[ ] = "Hello world \n"
FILE *varx = fopen ("/dev/lp0", "wb");
if (varx != NULL) {
fwrite(&Linea, 17, 1, varx);
fclose(varx);
|
| .............................................................................................................................
|
Wednesday, January 5
The project of Duratec Int. is finished, the domain is http://www.duratecint.com, the site is online. The screenshot about the file index.html is here.
|
| .............................................................................................................................
|
Monday, January 3
|
Today in the morning i was writting the code for printer from your program in C, only you should use the interruption DOS 21h and the records: AH = 5h and AL = character. The code is down.
// printer en c++
#include "dos.h"
void printer( );
char *output = "prueba";
main( )
{
while(*output)
printer(*output);
}
void printer(c)
int c;
{
union REGS r;
r.h.ah = 0x5;
r.h.al = c;
intdos(&r, &r);
}
|
| .............................................................................................................................
|
Saturday, January 1
|
|
Happy new year, Year load of excellent intentions (during the year i going to carry out it) and new projects. Greetings to all and very success.
|
|