AppleCare OS Support Agreement: How to find the registration number

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS AppleCare OS Support Agreement: How to find the registration number
# 1  
Old 01-07-2011
AppleCare OS Support Agreement: How to find the registration number

Learn how to find the registration number of an AppleCare OS Support Agreement. (For other types of AppleCare agreements, go to How to find your AppleCare registration number.)

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to find number in a field then print the line and the number

Hi I want to use awk to match where field 3 contains a number within string - then print the line and just the number as a new field. The source file is pipe delimited and looks something like 1|net|ABC Letr1|1530||| 1|net|EXP_1040 ABC|1121||| 1|net|EXP_TG1224|1122||| 1|net|R_North|1123|||... (5 Replies)
Discussion started by: Mudshark
5 Replies

2. UNIX for Advanced & Expert Users

device number registration

I would THANK if you answer my doubts in DETAILS please. Here's a sample code to create a device: if(scull_major) { dev=MKDEV(scull_major, scull_minor); result=register_chrdev_region(dev, scull_nr_devs, "scull"); } else{ result=alloc_chrdev_region(&dev, scull_minor,... (2 Replies)
Discussion started by: dr_mabuse
2 Replies
Login or Register to Ask a Question
XmRepTypeGetRegistered(library call)									      XmRepTypeGetRegistered(library call)

NAME
XmRepTypeGetRegistered -- A representation type manager function that returns a copy of the registration list SYNOPSIS
#include <Xm/RepType.h> XmRepTypeList XmRepTypeGetRegistered(void) DESCRIPTION
XmRepTypeGetRegistered retrieves information about all representation types that are registered with the representation type manager. The registration list is an array of structures, each of which contains information for a representation type entry. The end of the registra- tion list is marked with a representation type entry whose rep_type_name field has a NULL pointer. This routine allocates memory for the returned data. The application must free this memory using XtFree. The representation type entry structure contains the following information: typedef struct { String rep_type_name; String *value_names; unsigned char *values; unsigned char num_values; Boolean reverse_installed; XmRepTypeId rep_type_id; } XmRepTypeEntryRec, *XmRepTypeList; (void) rep_type_name The name of the representation type value_names An array of representation type value names values An array of representation type numerical values num_values The number of values associated with the representation type reverse_installed A flag that indicates whether or not the reverse converter is installed rep_type_id The identification number of the representation type RETURN
Returns a pointer to the registration list of representation types. RELATED
XmRepTypeRegister(3) and XmRepTypeGetRecord(3). XmRepTypeGetRegistered(library call)