예제 #1
0
파일: Profile.cs 프로젝트: 0xF6/EmotivSDK
    public byte[] GetBytes()
    {
        uint num = 0u;

        EmoEngine.errorHandler(EdkDll.EE_GetUserProfileSize(this.hProfile, out num));
        byte[] array = new byte[num];
        EmoEngine.errorHandler(EdkDll.EE_GetUserProfileBytes(this.hProfile, array, num));
        return(array);
    }