<img src="http://blogimgs.naver.com/nblog/ico_scrap01.gif" class="i_scrap" width="50" height="15" alt="본문스크랩" /> [모기지론] 모기지론과 s&L
scribbling 2006. 4. 19. 19:32
| |||
|
| |||
|
비주얼 스튜디오 팀 파운데이션 출시 (0) | 2006.07.20 |
---|---|
[펌] 프로젝트세팅에서 multithreaded 혹은 multithreaded dll (0) | 2006.01.13 |
CString Management (0) | 2006.01.07 |
vc++ 팁 (0) | 2005.11.08 |
Microsoft Visual Studio and C++ (0) | 2005.11.05 |
구조체를 리턴해야 하는 경우는 다음의 경우를 이용하는 것이 좋다.
출처: http://kin.naver.com/db/detail.php?d1id=1&dir_id=10104&eid=0tBeloUK0KfHnV5fAL4TxnUrkk8EdSo/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#define Link_Num 18
//구조체 선언
typedef struct _arc
{
int n1; //노드 x
int n2; //노드 y
int value; //링크수준
}Arc;
//함수 선언
Arc* Empty_Arc(void);
int main()
{
int i;
Arc *temp_arc;
temp_arc = Empty_Arc();
for(i=0 ; i < Link_Num ; i++)
printf("체크 %d\n", temp_arc[i].value); //결과2
free(temp_arc);
system("pause");
return 0;
}
Arc* Empty_Arc(void)
{
int i, j;
Arc* temp = (Arc*)malloc(sizeof(Arc) * Link_Num);
//초기화
for (i=0 ; i < Link_Num ; i++) {
temp[i].n1 = 0;
temp[i].n2 = 0;
temp[i].value = i;
}
for(i=0 ; i < Link_Num ; i++)
printf("리턴값 %d\n", temp[i].value); //결과1
return temp;
}
C를 C++처럼 사용하기 (0) | 2006.07.20 |
---|---|
<img src="http://blogimgs.naver.com/nblog/ico_scrap01.gif" class="i_scrap" width="50" height="15" alt="본문스크랩" /> uCOS-ii V2.51 8051 에 포팅하기 (0) | 2006.04.19 |
&, && 및 우선순위 주의 (0) | 2006.03.28 |
영어 축약어 (0) | 2006.02.15 |
__init, __exit 의미 (0) | 2006.02.14 |
vi혹은 vim에서 해당 함수/변수/매크로의 정의를 찾고 싶을 때 사용된다.
1. 가장 먼저 ctags를 다운을 받는다.
2. 해당 소스 트리에서 ctags -R 명령어를 내린다.
3. ctag라는 파일이 생성됨을 볼 수 있다.
vi, vim에서 사용하려면, 해당 함수/몸체/매크로에 커서를 두고, Ctrl + ] 를 같이 누른다.
그러면, 함수/변수/매크로의 정의로 파일을 읽은 후, 커서를 정의하고 있는 줄을 가르키게 된다.
만약 원래 소스로 움직이려고 하면, Ctrl + O를 눌러서 동작되도록 한다.
특수 문자 기호 이름 (0) | 2007.06.04 |
---|---|
<img src="http://blogimgs.naver.com/nblog/ico_scrap01.gif" class="i_scrap" width="50" height="15" alt="본문스크랩" /> [리뷰] UltraVNC로 원격 제어를 간편하게! (0) | 2006.11.08 |
[펌] HTML 특수문자표 (0) | 2005.11.01 |
자바 html parser (0) | 2005.10.20 |
C#과 자바의 비교. (0) | 2005.06.14 |
xbox 에 iptv (0) | 2008.05.08 |
---|---|
IPTV의 큰 난관 (0) | 2007.10.03 |
Comparison of the DAB, DMB & DVB-H Systems (0) | 2006.04.01 |
DOCSIS 1.0 1.1 2.0 (0) | 2006.02.11 |
MPEG4 AAC AVC 비교 (0) | 2006.02.11 |
출처 : http://www.digitalradiotech.co.uk/dvb-h_dab_dmb.htm
http://www.mobiletvforum.com/resources/files/system_comparison_TDMB_V_DVB-H.pdf
DVB-H 진영에서 실실 DMB쪽을 치고 시장에 상용화하려고 하고 있다.
DVB-H가 밧데리나 주파수 부분에서 효율적인 측면이 강하다고 하나, 이미 DAB 시스템이 널리 사용되고 있기 까닭에 비용 및 back-ward compatibility 측면에서 본다면, 여전히 T-DMB가 싸고 매력적이 될 수 있다.
그리고, 또한 DVB-H의 SFN이 상당히 큰 범위인 반명, DAB의 SFN는 영역이 작기 까닭에 locality가 작다는 부분이 있다.
앞으로 기술의 힘쪽으로 가느냐 아니면, 이미 있는 시스템을 가지고 구축하는게 좋을 지는 지켜 봐야할 부분에 속한다. 여전히 퀄컴의 미디어 플로는 너무 특정회사에 몰려 있는 산업 제품이라, 쓰여도 한정된 곳에서는 쓰이기에 결국은 minority가 되리라 생각된다.
IPTV의 큰 난관 (0) | 2007.10.03 |
---|---|
LAN 관련 Spec (0) | 2006.04.10 |
DOCSIS 1.0 1.1 2.0 (0) | 2006.02.11 |
MPEG4 AAC AVC 비교 (0) | 2006.02.11 |
[펌] MPEG2 시스템(Transport Stream) (0) | 2006.02.11 |
1. 산술연산 &와 논리 연산 &&의 의미를 파악해야 한다.
if ((ptr[1] & 0xFF) == 0x07) { (0)
if ((ptr[1] && 0xFF) == 0x07) { (X)
2. 우선순위가 ==이 &보다 높다.
if ((ptr[1] & 0xFF) == 0xF8) { (0)
if (ptr[1] & 0xFF == 0xF8) { (x)
<img src="http://blogimgs.naver.com/nblog/ico_scrap01.gif" class="i_scrap" width="50" height="15" alt="본문스크랩" /> uCOS-ii V2.51 8051 에 포팅하기 (0) | 2006.04.19 |
---|---|
좋은 구조체 리턴 함수 (0) | 2006.04.15 |
영어 축약어 (0) | 2006.02.15 |
__init, __exit 의미 (0) | 2006.02.14 |
extern으로 불러온 변수의 sizeof 호출하기 (0) | 2006.02.14 |
자바 native heap (0) | 2006.11.08 |
---|---|
WIPI 관련 질문 답 - KVM-interest (0) | 2006.03.21 |
JVM 관련 이메일 보냄 (0) | 2006.03.21 |
j2me상에서의 키 핸들링 방법 (0) | 2006.02.28 |
[본문 스크랩] [Java Wireless] MIDP 2.0 보안 아키텍처의 이해 (0) | 2006.02.21 |
WIPI is shown various heterogeneous application run time in Korea. A application in a specific mobile device is running, others not running.
And, according to a communication network vendor, their platform is different. So, hardware vendor and mobile application have a couple of applications (app is just only one.) dependent a specific communication network vendor.
WIPI is desgined for balance of strictness for compatibility across implementations and flexibility for differentiation, and independent of underlying OS and air interface. It support java and c. Different common platform, main characters of WIPI are HAL (defined porting layer) and Fast binary code execution(COD compiliation).
WIPI introduction (just old, but helpful) http://www.aptsec.org/meetings/2003/APTIF-4/(10Rev1)TTA.ppt
http://www.innoace.com/download/09%20WIPI/WIPI.pdf
WIPI Standard document here :
http://wipi.or.kr/English/standard_2.0_list.php
(You know which api support and also 3d api on WIPI documents.)
Downoloading site about WIPI java emulator & sdk :
http://www.developerzone.co.kr/ENGLISH/index.asp
(You have to gain a id and download it release-sdk download page.)
I hope to help you more.
Thanks and Regards
John Kim
-----Original Message-----
From: A mailing list for KVM discussion [mailto:KVM-INTEREST@JAVA.SUN.COM]
On Behalf Of John Bridges
Sent: Tuesday, March 14, 2006 12:32 AM
To: KVM-INTEREST@JAVA.SUN.COM
Subject: Re: WIPI C and WIPI JAVA
WIPI is a common effort to standardise the application platforms available on Korean networks - iirc.
They have GVM, SKVM, BREW, Java etc etc and I (when looking at the docs many moons ago) - WIPI C is supposed to replace GVM/BREW - or at least make them look the same at an application layer, and WIPI Java does the same for SKVM/j2me.
... and that's about the limit of my knowledge there - most of the sites detailing them require a Korean Government ID to register.
JB
kena kabra wrote:
> Hello All,
>
> Can anybody tell what is WIPI C and WIPI JAVA ?
> How it is different from J2ME.Which api's does it supports and also is
> there any 3D support on WIPI.
> I am reffering to *HERO (from Pantech), and the Kickflip (from VK).
> Hero is based on the IM-8300 in Korea.*
> **
> Also let me where can i find its sdk and document.
>
> Thanks and Regards,
> Kena
>
>
>
>
>
>
> ======================================================================
> ===== To unsubscribe, send email to listserv@java.sun.com and include
> in the body of the message "signoff KVM-INTEREST". For general help,
> send email to listserv@java.sun.com and include in the body of the
> message "help".
--
==============================
John Bridges
Director
ikkyou
Tel: +44 1732 74 22 22
Fax: +44 870 055 4911
email: John.Bridges@ikkyou.com
===============================
===========================================================================
To unsubscribe, send email to listserv@java.sun.com and include in the body of the message "signoff KVM-INTEREST". For general help, send email to listserv@java.sun.com and include in the body of the message "help".
===========================================================================
To unsubscribe, send email to listserv@java.sun.com and include in the body of the message "signoff KVM-INTEREST". For general help, send email to listserv@java.sun.com and include in the body of the message "help".
자바 native heap (0) | 2006.11.08 |
---|---|
Embedding web browser in midp 2.0 (0) | 2006.03.21 |
JVM 관련 이메일 보냄 (0) | 2006.03.21 |
j2me상에서의 키 핸들링 방법 (0) | 2006.02.28 |
[본문 스크랩] [Java Wireless] MIDP 2.0 보안 아키텍처의 이해 (0) | 2006.02.21 |
JVM web pages where I know are below.
Java virtual machine spec page in sun
http://java.sun.com/docs/books/vmspec/index.html
Open Source JVM implementation page - RVM http://jikesrvm.sourceforge.net/
GNU JVM implementation page - KAFFE http://www.kaffe.org/
Under the hood from artima.com
http://www.artima.com/underthehood/
http://www.javaworld.com/columns/jw-hood-index.shtml
Inside jvm from artima.com
http://www.artima.com/insidejvm/resources/index.html
Many people said me "Inside the Java virtual machine" book is good to study JVM.
If anybody know the good resources, please share it with pleasure.
Sincererly
YongHwan
-----Original Message-----
From: A mailing list for KVM discussion [mailto:KVM-INTEREST@JAVA.SUN.COM]
On Behalf Of Gowri Satish Adimulam
Sent: Thursday, March 16, 2006 2:59 PM
To: KVM-INTEREST@JAVA.SUN.COM
Subject: concepts of Virtual mahine
Hi ,
Iam new to Java ,
can any body let me know where can i find some resouces about Java Virtual machines .
.
Thanks
Gowri
===========================================================================
To unsubscribe, send email to listserv@java.sun.com and include in the body of the message "signoff KVM-INTEREST". For general help, send email to listserv@java.sun.com and include in the body of the message "help".
===========================================================================
To unsubscribe, send email to listserv@java.sun.com and include in the body of the message "signoff KVM-INTEREST". For general help, send email to listserv@java.sun.com and include in the body of the message "help".
Embedding web browser in midp 2.0 (0) | 2006.03.21 |
---|---|
WIPI 관련 질문 답 - KVM-interest (0) | 2006.03.21 |
j2me상에서의 키 핸들링 방법 (0) | 2006.02.28 |
[본문 스크랩] [Java Wireless] MIDP 2.0 보안 아키텍처의 이해 (0) | 2006.02.21 |
Java on PocketPC, the Unofficial FAQ (0) | 2006.02.07 |