Subversion Repositories filter_foundry

Rev

Rev 193 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 193 Rev 259
Line 1... Line 1...
1
#include "ASConfig.h"
1
#include "ASConfig.h"
2
 
2
 
3
#include <quickdraw.h>
3
#include <quickdraw.h>
4
 
4
 
5
#include "astypes.h"
5
#include "astypes.h"
6
#include "spplugs.h"
6
#include "spplugs.h"
7
 
7
 
8
#include "common.h"
8
#include "common.h"
9
 
9
 
10
void SetPlatformCursor(SPPluginRef pluginRef, int nCursorID)
10
void SetPlatformCursor(SPPluginRef pluginRef, int nCursorID)
11
{
11
{
12
        ASErr e = kNoErr;
12
        ASErr e = kNoErr;
13
        CursHandle cursor;
13
        CursHandle cursor;
14
 
14
 
15
        if ( cursor = GetCursor( nCursorID ) )
15
        if ( cursor = GetCursor( nCursorID ) )
16
                SetCursor( *cursor );
16
                SetCursor( *cursor );
17
}
17
}