Quick Newbie Question About Conformance Tests

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
RedAces
Newbie
Newbie
Posts: 2
Joined: Wed Jan 02, 2013 4:27 pm

Quick Newbie Question About Conformance Tests

Post by RedAces »

I'm interested in helping Wine write some conformance tests. The problem is I don't understand any of the code such as:

trace("testing GlobalAddAtomA\n");
trace("foo=%d\n",foo);

ATOM atom = GlobalAddAtomA( "foobar" );
ok( GlobalFindAtomA( "foobar" ) == atom, "could not find atom foobar\n" );
ok( GlobalFindAtomA( "FOOBAR" ) == atom, "could not find atom FOOBAR\n" );

:? I have no idea which language this is.
I'm not expecting this to be easy. What are some prerequisites that I have to learn before I start?

P.S. I have previous experience in Java, Scheme and C#
Locked