Esempio n. 1
0
        public byte[] GetBytes()
        {
            uint pProfileSizeOut = 0;

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