2009年9月22日 星期二

MAC Address

在assign MAC address 的時候,要注意順序

前3個是OUI ( Organizationally Unique Identifier )
而且 第一個byte( MSB) 的最後一個bit 代表 unicast or multicast
假如為1 , 就會是multicast , 在很多網路上會不能用
要注意

2009年9月2日 星期三

WINCE mp4v2 porting

要定義
_WIN32_WCE=0x500 (沒有定義0x500的話, VC 的 sal.h 中一些定義會和 Standard SDK specstring.h 定義衝到 ( redefinition )
_MIPS_

1. 沒有 errno.h
( 就沒有 _TRUNCATE, EINVAL, ERANGE, EACCES
2. 沒有 io.h
3. 沒有 fcntl.h
4. 沒有 sys/types.h
5. 沒有 sys/stat.h

6. 沒有 snprintf ( vs sprintf ) , 用 _snprintf

如何 disable strsafe error ( instead_Using... error )
在 include strsafe.h 之前
#define STRSAFE_NO_DEPRECATE
就好了

資料來源: WINCE 5 help: Using strsafe.h