Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
215 B

  1. class TestMarshalClass
  2. {
  3. [key] string Name;
  4. string Prop1;
  5. uint32 Prop2;
  6. };
  7. instance of TestMarshalClass
  8. {
  9. Name = "BasicObject";
  10. Prop1 = "TestProperty";
  11. Prop2 = 1234;
  12. };