Register Forum Rules Recent Forum Posts View Members Advanced Search
Current Time in Taiwan (GMT+8): (Scheduled Events)
Current Taiwanese Game Version: 1.57.49 (Released: May 15)
Download
Character List
Guild List

March 26th, 2013
#11
Broken image .
March 28th, 2013
#12
Tell me if you could see this picture

http://s1321.photobucket.com/user/Mi...48b53.png.html

Last edited on March 28th, 2013 at 07:35 PM.
March 29th, 2013
#13
Can u repost ur images ?
It's not visible .
Ok here's how to copy the url from the image and post it here
( Updating )

< How to copy the url of an image >

Internet Explorer

Click on the desired picture with the right mouse button.
Select Properties from the menu.
Highlight the address appearing under Address (URL):.
Press Ctrl-C.


Mozilla Firefox

Click on the image with the right mouse button.
Choose Copy Image Location from the menu.


Safari and Opera

Click on the desired image with the right mouse button (or holding down Ctrl while clicking with the left or only button).
Select Copy Image Address from the menu.


Google Chrome

Click on the image with the right mouse button.
Select Copy Image URL from the menu that comes up.



So according to this image above it says tht " Expression: ("Buffer is too small && 0" ) " .

This error means that "deviceName" is not large enough to fit the null-terminated string in "volumePath". Also, sizeof(deviceName) will not return the size of the buffer, but rather the size of deviceName's type (that's what sizeof does). In this case, that would probablt be the same as sizeof(char*), which is 4 bytes in x86 and 8 in x64. What you probably want to do is 1. allocate a buffer large enough to hold whatever volumePath holds, and 2. pass this as the second parameter to strcpy_s.

Hope it helped .
Sorry im not helping that much for some time now .
Busy with some internet stuffs .

Last edited on March 29th, 2013 at 03:14 AM.