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.

12 lines
206 B

12 years ago
  1. using System;
  2. namespace Example1
  3. {
  4. internal class AudioMessage
  5. {
  6. public uint user_id;
  7. public byte ch_num;
  8. public uint buffer_length;
  9. public float [,] buffer_array;
  10. }
  11. }