Ignore:
Timestamp:
Jan 22, 2008, 9:19:59 PM (16 years ago)
Author:
イグトランス (egtra)
Message:

_System_CThreadCollectionでのクラスインスタンスへのポインタの使用を除去、参照変数構文へ。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/basic.sbp

    r304 r400  
    55' Unicodeが不安定な間の暫定対応
    66#define __STRING_IS_NOT_ALWAYS_UNICODE
    7 
    87
    98#ifndef _INC_BASIC
     
    107106End Function
    108107
    109 Sub SetChar(p As *Char, c As Char)
     108Sub SetChar(p As *WCHAR, c As WCHAR)
    110109    p[0] = c
    111110End Sub
    112111
    113 Function GetChar(p As *Char) As Char
     112Function GetChar(p As *WCHAR) As WCHAR
     113    GetChar = p[0]
     114End Function
     115
     116Sub SetChar(p As *CHAR, c As CHAR)
     117    p[0] = c
     118End Sub
     119
     120Function GetChar(p As *CHAR) As CHAR
    114121    GetChar = p[0]
    115122End Function
Note: See TracChangeset for help on using the changeset viewer.