Hi,
I have it half way done. Run the test program and you can see. Program works in
W2k, XP and Wine. mingw32-gcc -mwindows -Os GetGlyphOutline.c -o ggo.exe
I stopped messing with it two weeks ago, I needed to work on something else.
When testing you can select the alphanumeric character with the keyboard. The
original program had "a" but I changed it to "L" something simple to draw at
first. You will see the problem.
The test program from Dr. Dobb's Journal http://www.ddj.com/184409154?pgno=12
Thanks,
James
Runs and hides~
gedmurphy(a)svn.reactos.org wrote:
> Author: gedmurphy
> Date: Thu Nov 30 22:23:19 2006
> New Revision: 25001
>
> URL: http://svn.reactos.org/svn/reactos?rev=25001&view=rev
> Log:
> allow the Americans their incorrect spellings and add a correct UK resource file ;)
>
We (Canadians) also know how to spell properly :)
en-CA please!
--
Best regards,
Alex Ionescu
Project Lead, TinyKRNL
Kernel-Mode Software Design Engineer, ReactOS
Thanks, adding this value set to x86 made the WinPcap installer start.
I wonder where we should set this.
Since ReactOS has only x86 for now,
I guess we can add it to the default registry set (hivesys.inf)
Kind regards,
Sylvain Petreolle (aka Usurp)
--- --- --- --- --- --- --- --- --- --- --- --- ---
Run your favorite Windows apps with free ReactOS : http://www.reactos.org
Listen to non-DRMised Music: http://www.jamendo.com
Hi guys. Can anyone take care of the resource files we have added to bugzilla? It's been long time since a commit was made for these ones.
Thnx in advance
I have been an active member of the ReactOS community for some time
now. I discovered this project a few months before the 0.2.9 release
and was instantly amazed by the smart people and amount of hard work
that has gone into this project now spanning a decade.
Everyone knows me in #reactos by the name "encoded".
Qualifications:
- I compile and test ros almost every day, report bugs and participate
in developer discussions.
- I'm an amature coder, student of computer engineering(www.pupr.edu)
- I like to program(a lot), so I understand what's going on pretty well.
- I also know a bit of HTML.
Goals for the newsletter:
Not just the "there where commits about this and that this week" type
of publication, I want to write articles about how foo.dll and bar
feature work in windows, their current state in ROS.
I want to create a medium which gives people outside the close nit
ReactOS community a sense of belonging, that sparks the interest of
coders and people in general. A medium that actually reflects the
current state of affairs in ros, tips, tricks, how tos and even recent
bugs and regressions!
Note:
-I am a full time student and also have a job, so I would prefer a
bi-weekly newsletter, but could also work in a weekly time frame if
needed.
-Those nice little articles about foo.dll and bar features will be
dependant(specially the ros side of it) on devs helping out in writing
them.
-I LOVE REACTOS!!!
fireball(a)svn.reactos.org wrote:
> Author: fireball
> Date: Mon Nov 27 00:46:45 2006
> New Revision: 24848
>
> URL: http://svn.reactos.org/svn/reactos?rev=24848&view=rev
> Log:
> i386BootDrive and i386BootPartition are ULONGs, and before saving a byte value they must be zeroed.
Ever heard of movzx?
--
Best regards,
Alex Ionescu
Project Lead, TinyKRNL
Kernel-Mode Software Design Engineer, ReactOS
I wish Magnus would mention that this commit ALSO includes patch from
bug #1837.
WBR,
Aleksey Bragin.
On Nov 26, 2006, at 1:39 PM, greatlrd(a)svn.reactos.org wrote:
> Author: greatlrd
> Date: Sun Nov 26 13:39:50 2006
> New Revision: 24834
>
> URL: http://svn.reactos.org/svn/reactos?rev=24834&view=rev
> Log:
> 1. revers 24831 to 24833 userenv.h does not exists in ms psdk and
> shall move to folder include/ndk or include/reactos
> 2. do not create new private header, we already have one, but it is
> in wrong folder.
> 3. This header should have been move long time ago.
> 4. do not doing #include "userenv-priv.h" it will not found the
> header in syssetup/install
>
>
> Removed:
> trunk/reactos/dll/win32/userenv/userenv-priv.h
> Modified:
> trunk/reactos/dll/win32/syssetup/install.c
> trunk/reactos/dll/win32/syssetup/syssetup.rbuild
> trunk/reactos/dll/win32/userenv/precomp.h
> trunk/reactos/dll/win32/userenv/userenv.rbuild
> trunk/reactos/drivers/input/i8042prt/mouse.c
> trunk/reactos/include/psdk/userenv.h
>
> Modified: trunk/reactos/drivers/input/i8042prt/mouse.c
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/input/
> i8042prt/mouse.c?rev=24834&r1=24833&r2=24834&view=diff
> ======================================================================
> ========
> --- trunk/reactos/drivers/input/i8042prt/mouse.c (original)
> +++ trunk/reactos/drivers/input/i8042prt/mouse.c Sun Nov 26
> 13:39:50 2006
> @@ -903,6 +903,9 @@
> UCHAR Value;
> UCHAR ExpectedReply[] = { 0xFA, 0xAA, 0x00 };
> unsigned ReplyByte;
> + ULONG Counter;
> +
> + I8042Flush();
>
> if (! I8042Write(DevExt, I8042_CTRL_PORT, 0xD4) ||
> ! I8042Write(DevExt, I8042_DATA_PORT, 0xFF))
> @@ -915,7 +918,12 @@
> ReplyByte < sizeof(ExpectedReply) / sizeof(ExpectedReply[0])
> && Ok;
> ReplyByte++)
> {
> - Status = I8042ReadDataWait(DevExt, &Value);
> + Counter = 200;
> +
> + do {
> + Status = I8042ReadDataWait(DevExt, &Value);
> + } while (Status == STATUS_IO_TIMEOUT && Counter--);
> +
> if (! NT_SUCCESS(Status))
> {
> DPRINT1("No ACK after mouse reset, status 0x%08x\n",
>
I have been following the ReactOS project for a while now, and would like to
write your newsletters for you.
Qualifications:
- I have enough time to write the newsletter once a week.
- English is my first language, and I can write fairly well.
- I like to program in my free time, so I understand what's going on pretty
well.
- I don't know if I can do the IRC, though.
- I also know HTML.
If I am not picked, that's alright, I just wanted to help you guys out... I
would help out with the actual project, but I don't think my programming
skill is that advanced.