Page Number: Page 1 sur 1
Actual Results
- alvin
- Forums: Programming / Scripting / Coding Forum
- Sujet: API Calls
- Subject: API Calls
- Réponses: 2
- Vus: 1333
- Subject: API Calls
Posted: Février 7th, 2004, 2:54 pm
You have to prepare an enough space of buffer, so that GetUserName() could store data into the buffer. Rewrite like this: ...... int temp; TCHAR ipbuffer[30]; DWORD sizeBuff=30; temp=GetUserName(ipbuffer,&sizeBuff); ...... And in your original code, the ipbuffer was pointed into a constant string. B...
- alvin
- Forums: Unix / Linux Forum
- Sujet: Distributed Share Memory
- Subject: Distributed Share Memory
- Réponses: 1
- Vus: 1769
- Subject: Distributed Share Memory
Posted: Février 7th, 2004, 2:31 pm
Does anyone hear about Distributed Share Memory ? Or anyone interests in it ? It seems a technology applied in a distribution computing environment, and very popular in a few years ago, but not now. Unfortunately, I choose this topic as my class project. So I'm just wondering anyone can give me more...
