Search found 62 matches

by callroot
Sun Apr 09, 2017 8:27 am
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4911

Re: Super skin Static librar release,But there are some prob

Josh wrote:Second problem, you use to many styles in your request :mrgreen:
Pellesc normal but PUREBASIC can not be used normally
by callroot
Sun Apr 09, 2017 8:24 am
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4911

Re: Super skin Static librar release,But there are some prob

Michael Vogel wrote:First problem, you create a rar file and call it a zip...
Yes upload requirements must be ZIP so changed the name
by callroot
Sun Apr 09, 2017 12:57 am
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4911

Re: Super skin Static librar release,But there are some prob

Online waiting, no friends can solve it
by callroot
Sat Apr 08, 2017 1:25 pm
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4911

Super skin Static librar release,But there are some problems

I'll upload a few pictures

This is a beautiful skin library

I use Pellesc to call the static library is normal

http://i2.muimg.com/590787/bcf63e7d545ff797.jpg


But PUB call can not, the reason can not find

http://i4.buimg.com/590787/a8551aeb892e1c69.jpg


There are no technical ...
by callroot
Sun Jan 01, 2017 5:10 pm
Forum: General Discussion
Topic: _IP_ADAPTER_ADDRESSES ????
Replies: 1
Views: 16350

_IP_ADAPTER_ADDRESSES ????

How to translate to PUREBASIC



typedef struct _IP_ADAPTER_ADDRESSES {
union {
ULONGLONG Alignment;
struct {
ULONG Length;
DWORD IfIndex;
};
};
struct _IP_ADAPTER_ADDRESSES *Next;
PCHAR AdapterName;
PIP_ADAPTER_UNICAST_ADDRESS FirstUnicastAddress;
PIP_ADAPTER_ANYCAST_ADDRESS ...
by callroot
Sat Dec 03, 2016 5:31 am
Forum: General Discussion
Topic: GET ADSL IP
Replies: 5
Views: 2988

Re: GET ADSL IP

DarkDragon wrote:https://msdn.microsoft.com/de-de/librar ... s.85).aspx
ERROR_INVALID_SIZE: The dwSize member of the structure pointed to by lpprojection specifies an invalid size.

thank you
by callroot
Sat Dec 03, 2016 5:30 am
Forum: General Discussion
Topic: GET ADSL IP
Replies: 5
Views: 2988

Re: GET ADSL IP

Try it like this for fun:

Import "Rasapi32.lib"
RasEnumConnectionsA(*buffer, *pointer1, *pointer2)
EndImport

#RAS_MaxEntryName = 256
#RAS_MaxDeviceName = 128
#Ras_MaxDeviceType = 16

Structure RASCONN
dwSize.l
hRasConn.l
szEntryName.b[#RAS_MaxEntryName+1]
szDeviceType.b[#Ras_MaxDeviceType ...
by callroot
Fri Dec 02, 2016 8:13 am
Forum: General Discussion
Topic: GET ADSL IP
Replies: 5
Views: 2988

GET ADSL IP



Structure RASCONN
dwSize.l
hRasConn.l
szEntryName.b[256+1]
szDeviceType.b[16+1]
szDeviceName.b[128+1]
EndStructure

Structure RASCONNSTATUS
dwSize.l
RasConnState.l
dwError.l
szDeviceType.b[16+1]
szDeviceName.b[128+1]
EndStructure

Structure RASDIALPARAMS
dwSize.l
szEntryName.b[256 ...
by callroot
Thu Dec 01, 2016 11:02 pm
Forum: General Discussion
Topic: Structure of translation
Replies: 0
Views: 1442

Structure of translation


typedef struct _RASPPPIP {
DWORD dwSize;
DWORD dwError;
TCHAR szIpAddress[RAS_MaxIpAddress + 1];
#ifndef WINNT35COMPATIBLE
TCHAR szServerIpAddress[RAS_MaxIpAddress + 1];
#endif
#if (WINVER >= 0x500)
DWORD dwOptions;
DWORD dwServerOptions;
#endif
} RASPPPIP;




In addition to an example ...
by callroot
Wed Nov 02, 2016 6:46 pm
Forum: General Discussion
Topic: RunProgram input
Replies: 1
Views: 1797

RunProgram input

OpenConsole ()
Use RunProgram to call the FTP input "hnysc.com open" and then enter the account and password




If OpenConsole()
ConsoleTitle("1111111111111111")
pc=RunProgram("FTP" ,"open hnysc.com", "",#PB_Program_Open)

Input()
EndIf





Did not find examples of who can help to write a
by callroot
Fri Oct 14, 2016 1:07 am
Forum: Coding Questions
Topic: Urgent need to have a strong technical person to answer it
Replies: 2
Views: 1659

Re: Urgent need to have a strong technical person to answer

Is there a way of thinking, how to achieve sock5 can do?
by callroot
Thu Oct 13, 2016 2:18 pm
Forum: Coding Questions
Topic: Urgent need to have a strong technical person to answer it
Replies: 2
Views: 1659

Urgent need to have a strong technical person to answer it

How to use IP proxy to send mail???????

; process to test new email capabilities in PB 5.40


;****************************************************************************************
; send out the page to the secure server ...
by callroot
Sun Jul 10, 2016 8:23 am
Forum: General Discussion
Topic: ASM CODE ERRO
Replies: 0
Views: 1199

ASM CODE ERRO



Procedure.L bstcmpi(txt1.S, txt2.S)
!mov esi,[p.v_txt1]
!mov edi,[p.v_txt2]
!mov esi, [esi] ; ' dereference it to get text address
!mov edi, [edi]
!sub eax, eax ; ' zero eax as index
!lbl1:
!movzx edx, BYTE Ptr [esi+eax]
!movzx ebx, BYTE Ptr [edi+eax]
!movzx ecx, BYTE Ptr Cmpi_tbl[edx ...
by callroot
Tue May 31, 2016 5:49 am
Forum: Assembly and C Programming in PureBasic
Topic: strange ASM
Replies: 11
Views: 11932

Re: strange ASM

i didnt think you could "mov [mem], [mem]" in the one go (and this is a CPU thing not a PB thing) - you have to "mov reg, [mem]" then "mov [mem], reg". Please correct me if im wrong!


c0.s = " 456 "

c1.s = " 789 "

! mov eax,[v_c0]

! mov [v_c1],eax


debug c1
Code works fine. What's so ...